Forum Discussion

Larry_Wang's avatar
Larry_Wang
Icon for Helper I rankHelper I
4 years ago
Solved

How to change values with DAX

Hi Everyone,   I have a table below and I want to create a new column called category with only two items, fruit & other. How to do this with DAX?   ID Name CATEGORY 1 APPLE fruit 2 ...
  • ValtteriN's avatar
    4 years ago

    Hi,

    Here is an example:

    Category = IF(Category[Name] in {"TABLE","PEN"},"OTHER","FRUIT")


    I hope this helps to solve your issue and if it does consider accepting this as a solution and giving the post a thumbs up!