Forum Discussion
tracyhopaulson
Resolver I
6 years agoif statement custom column
I have a column "Item" that I would like to find all values start with "SK" or "78", then insert a text "Do Not Use" to the custom column, otherwise, carry the values from column Item over as is. Ca...
- Anonymous6 years ago
I would create a column
_new_column = IF(LEFT([column],2) IN {"SK","78"}, "Do Not Use",[column])
Ajinkya369
Resolver III
6 years ago- tracyhopaulson6 years ago
Resolver I
Ajinkya369 attaching image of data and the result I would like to achieve. Need help with Dax formula or custom column formula please. Thank you.
- PaulDBrown6 years ago
Community Champion