Forum Discussion
nikhilmanohar
Helper I
8 years agoIf Not blank - Formula for two columns
Hello, How to compare two columns and return "0" if both columns are blank and return "1" otherwise. I'm an absolute beginner and any help would be greatly appreciated.
- 8 years ago
You can use this column
Column = IF ( AND ( ISBLANK ( Table1[Col1] ), ISBLANK ( Table1[Col2] ) ), 0, 1 )
Zubair_Muhammad
Community Champion
8 years ago
You can use this column
Column = IF ( AND ( ISBLANK ( Table1[Col1] ), ISBLANK ( Table1[Col2] ) ), 0, 1 )
- nikhilmanohar8 years ago
Helper I
Zubair_Muhammad Thank you very much :)