Reputation: 1
Can I sort the data using the @if conditional statement
Data := @If(Form = "oneTask"; info_1; Codes);
@If(Data = "Database Details"; 1;0 )
Upvotes: 0
Views: 42
Reputation: 30970
You'd change your column formula to
Data := @If(Form = "oneTask"; info_1; Codes);
@If(Data = "Database Details"; "Database Details"; "")
Column would show "Database Details" only if field info_1/Codes contains "Database Details". Otherwise column would be empty.
Upvotes: 2