Condition for format rule not working

In Appshett I am trying to do the following

I have a few names and want to make one column Red for all of them, but I cannot get it to work
Condition for format rule (Inligitn) Mei 2023-4

1 [Naam] = "Centus","Centus Plus", "Bincome","Binc","Dbc","bincua"
(The value of column 'Naam') is equal to ("Centus")

Solved Solved
0 7 156
1 ACCEPTED SOLUTION

Use OR () function 

Example

OR(
[CONSIGNMENTS STATUS]="RETURN RECEIVED" ,
[CONSIGNMENTS STATUS]="RETURN INITIATED"
)

View solution in original post

7 REPLIES 7

Please share screen shot for this particular formatting.

Here is he screenshotsScreenshot_27.pngScreenshot_26.png

Use OR () function 

Example

OR(
[CONSIGNMENTS STATUS]="RETURN RECEIVED" ,
[CONSIGNMENTS STATUS]="RETURN INITIATED"
)

Not working, what am I doing wrong  Screenshot_28.png

Wrap the or () for the entire expression. 

Or(

[Naam] = "centre" , [Naam] = " venture plus", ............ 

)

 

You can try this also

In([Naam] , list ("centus", centus plus",....... ))

Thank you, working now

In( [Naam] , list( "Centus","Centus Plus", "Bincome","Binc","Dbc","bincua")

 

This will work perfectly

Top Labels in this Space