Forum Discussion
rohitjmd
7 years agoHelper II
IF statement in custom column
hello, i am trying to add a custom column where if value in column A is greater than 0 then column A value should appear, if not value from column B should appear, though if both column have nul...
- 7 years ago
rohitjmd Try this as a "Custom Column" in Power Query Editor
=if [A]=null or [A]<=0 then [B] else [A]
PattemManohar
7 years agoCommunity Champion
rohitjmd Try this as a "Custom Column" in Power Query Editor
=if [A]=null or [A]<=0 then [B] else [A]