Forum Discussion
HenryJS
6 years agoPost Prodigy
IF Contains Text
Hi all,
How do I create a new column IF Ref 1 has text then Yes
Thanks,
H
- Anonymous6 years agoColumn = IF(ISBLANK([Ref 1]),BLANK(),"Yes")
Paul Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
4 Replies
- AnonymousNot applicable
IF(Reference1 <> BLANK(), "Yes", "No"
- FrankATCommunity Champion
Regards Frank AT
- AnonymousNot applicableColumn = IF(ISBLANK([Ref 1]),BLANK(),"Yes")
Paul Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.