Hi,
I am trying to convert an SQL script into the Formula button, but can't seem to work.
IIF ([Order Number] IN ('111','222','333'), "Parts","Non-parts". For some reason it is not working.
Please advise.
Wayne
Solved! Go to Solution.
Hi @yzhang316
You have a missing parenthesis in your formula:
IIF ([Order Number] IN ('111','222','333'), "Parts","Non-parts")
Also, is Order Number an Int Type or String Type?
If it is an Int, the formula should look like this: IIF ([Order Number] IN (111,222,333), "Parts","Non-parts")
You shouldn't quote what's inside if it's a number.
Cheers,
Thank you!