Forum Discussion
Anonymous
7 years agoNot applicable
Multiple Conditions in Custom Column
Hello, I was hoping someone could point out what I am doing wrong. I am using Power Query to check two columns for conditions and if they relsove to be true then update a third column. What I have ...
- 7 years ago
Try this, I think you just need to change to the [label] = null
Table.AddColumn(#"Changed Type", "Custom", each if [HDX_Domain] = "CPR" and [label] = "None" then "$CPR" else if [HDX_Domain] = "CPR" and [label] = null then "$$$CPR" else [label])
jdbuchanan71
7 years agoSuper User
Try this, I think you just need to change to the [label] = null
Table.AddColumn(#"Changed Type", "Custom", each if [HDX_Domain] = "CPR" and [label] = "None" then "$CPR" else if [HDX_Domain] = "CPR" and [label] = null then "$$$CPR" else [label])
Anonymous
7 years agoNot applicable
Thank you. I will give this a try.