0 ? 1 : 0size(filter([Description], "Kite")) > 0 ? 1 : 0but none of them will work, any ideas?"/> 0 ? 1 : 0size(filter([Description], "Kite")) > 0 ? 1 : 0but none of them will work, any ideas?"/>
I am asking; If [description] contains "kite" the result should be 1 otherwise 0
I have tried from gemini
if(test([Description], "Kite"), 1, 0) if(test([Description], /kite/i), 1, 0) count(match([Description], /Kite/i)) > 0 ? 1 : 0 size(filter([Description], "Kite")) > 0 ? 1 : 0
but none of them will work, any ideas?
Hi Kevin,
At the moment, zzTakeoff does not reliably support checking whether a description contains specific text such as “kite” within a formula. I found that all my test formulas with " " are not working.
Because of this limitation, the solution I've implemented uses a dedicated field called [Kite] instead of trying to detect the word in the description.
The way it works is:


In simple terms, the formula converts the input into a clear yes/no result:
0 = Not a Kite item
1 = Kite item
Hope this helps