Hi Everyone
I am trying use this formula : IF(Contains({xxx}, “%”), “Sim”, “Não”)
What´s the problem?
xxx colunm is a text colunm
Hi Everyone
I am trying use this formula : IF(Contains({xxx}, “%”), “Sim”, “Não”)
xxx colunm is a text colunm
Hi Beatriz,
Try
IF(SEARCH("%",{xxx}),"Sim","Não")
Want to take your formulas to the next level? Try the Advanced Formula Booster, the app that reinvents formulas in monday.
Check our blog for real use cases.
Hi @GCavin
Unfortunally the answer keep wrong
Try
IF(SEARCH("%",{xxx})>0,"Sim","Não")
Thank you so much @GCavin
Now it is working!!!