Is that possible to add a conditional column with such statement in Excel Power Query?
Also a simplier formula like if [MyData]="1" then QueryA[MyData] return a list of values not the corresponding QueryA MyData row data.
It's not working.Thanks
Excel Formula:
= Table.AddColumn(#"Classified rows", "Personalize", each if QueryA[MyData] = "X" and QueryB[MyData] = "Y" then "Z" else [MyData)
It's not working.Thanks