Forum Discussion
Baconbomb
Helper I
8 years agoChange value based on value in other column
Hi. I have a column where i want to change the value IF its blank or # and if the value in a different column is NOT "x" or "y" or "z" To explain it a little better. So the column i want to cha...
- 8 years ago
You may refer to the following DAX that adds a calculated column.
Column = IF ( Table1[Column1] IN { "", "#" } && NOT ( Table1[Column2] IN { "x", "y", "z" } ), TRUE (), FALSE () )
v-chuncz-msft
Community Support
8 years agoBaconbomb
Helper I
8 years agoMissed them. Now it works.
Thanks for the help.