Forum Discussion

Jonjon_99's avatar
Jonjon_99
Icon for Helper I rankHelper I
2 years ago
Solved

POWER BI DAX IF STATEMENT

hi, i would like to create new column/DAX formula that will return my Product to "Others". this is the sample if the product = Montana, Paseo, Velo and VTT it will be tag as Others TIA! joh...
  • Ahmedx's avatar
    Ahmedx
    2 years ago

    then it’s better for you to create a table with the names of the products in an Excel file and upload it to power bi
    and then you can update the list at any time
    ----

    Measure = IF(MAX('yourtabl[product]) in VALUES('tablePro[Product]), "Others", MAX('yourtabl[product]))