Forum Discussion
Rsnor
3 years agoRegular Visitor
Help with if and statement
Apologies if this was answered before. I am having issues with my if and statements in power query. =If [item1] = 1 and [item2] <> null then 1 else 0 Where [item2] just needs to have any te...
- 3 years ago
=If [item1] = 1 and Text.Combine({[item2],[item3],[item4]})<>"" then 1 else 0
wdx223_Daniel
3 years agoCommunity Champion
=If [item1] = 1 and Text.Combine({[item2],[item3],[item4]})<>"" then 1 else 0
Rsnor
3 years agoRegular Visitor
That's it! thank you so much daniel.