Forum Discussion
Anonymous
5 years agoNot applicable
IF
Hi trying to create =IF(table[ordertypeD] = "Normal Order"), table[feild],"") Getting an error on "Normal Order" Yet Normal Order exists in table[ordertypeD] In fact I get an error as ...
- Anonymous5 years ago
Hi Anonymous
Try
=IF(table[ordertypeD] = "Normal Order", table[feild],blank())
Tahreem24
5 years agoSuper User
Anonymous ,
There is an Parenthesis error. It should be like:
=IF(table[ordertypeD] = "Normal Order", table[feild],"")