Forum Discussion
HenryJS
6 years agoPost Prodigy
If Statement
Hi all, How do I create a new column where IF 'CompanyHQ' is blank then use 'Site' value Else return 'Site' values Thanks, Henry
- Anonymous6 years ago
Column = If(ISBLANK('column you want to check'), 'column to return if previous is blank', 'column to return if there is a value')
Anonymous
6 years agoNot applicable
Column = If(ISBLANK('column you want to check'), 'column to return if previous is blank', 'column to return if there is a value')