I have been struggling for a while to fix error in the formula of Disable IF for a button.
I would like to disable button when row value of column 5 (select list) is either AA or BB
Disable IF: thisROW.Column_5=“AA” OR (“BB”)
Thx
Herve
I have been struggling for a while to fix error in the formula of Disable IF for a button.
I would like to disable button when row value of column 5 (select list) is either AA or BB
Disable IF: thisROW.Column_5=“AA” OR (“BB”)
Thx
Herve
Try one of these:
thisRow.Column5 = "AA" OR thisRow.Column5 = "BB"
OR(thisRow.Column5 = "AA", thisRow.Column5 = "BB")
Hi @Herve_Soursou
and welcome to Coda Community
As @Ander correctly suggested, they both work.
If you have multiple values and need a more concise way to express it, you can also go with:
thisRow.Column 5.In("AA","BB")
Have a look at the Formula Reference and you’ll find a good deal of examples and inspiration.
Cheers!
thx @Ander and @Federico_Stefanato all your formulas work