ccnetwork
ccnetwork

Reputation: 1

Ibm lotus notes : how do I set the column to only show data which matches a specific word

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

Answers (1)

Knut Herrmann
Knut Herrmann

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

Related Questions