Forum Discussion

vkandala's avatar
vkandala
Frequent Visitor
9 years ago
Solved

DAX syntax

 

Please, I need some help.

 

Thanks

  • Hi 

     

    I 've tried using 

     

     = IF(OR(OR(OR(OR(OR(OR(OR(OR('Car Data'[car]= "BMW",'Car Data'[car]= "Audi"),'Car Data'[car]= "Jaguar"),'Car Data'[car]= "Mercedes-Benz"),'Car Data'[car]= "Bentley" ),'Car Data'[car]= "Aston Martin"),'Car Data'[car]= "Rolls-Royce"),'Car Data'[car]= "Lamborghini"),'Car Data'[car]= "Ferrari,"),"Luxury","General")

     

    and this worked!!

     

    Thanks all for your workaround.

5 Replies

  • vkandala's avatar
    vkandala
    Frequent Visitor

    Thanks, Dilmund for the reply.

     

    I know we can do in the query editor. but can we achieve the same using a DAX syntax in the data view itself?

     

    Thanks.

  • dilumd's avatar
    dilumd
    Impactful Individual

    You can use "IF" and "OR" function to achieve the same result. Give me some sample date to help you with this?

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi vkandala,

     

    Based on your screenshots, you can refer to below formula to check the segment of car column.

     

    Calculated column: if count of current brand which exist in table is greater than 5, it is a general brand, otherwise it is a luxury brand.

     

    Result = IF(COUNTAX(FILTER(ALL(Table),[Car]=EARLIER(Table[Car])),[Car])>5,"General","Luxury")

     

    Notice: you can modify the bold number to switch the rare condition.

     

    Regards,

    Xiaoxin Sheng

  • vkandala's avatar
    vkandala
    Frequent Visitor

    Hi 

     

    I 've tried using 

     

     = IF(OR(OR(OR(OR(OR(OR(OR(OR('Car Data'[car]= "BMW",'Car Data'[car]= "Audi"),'Car Data'[car]= "Jaguar"),'Car Data'[car]= "Mercedes-Benz"),'Car Data'[car]= "Bentley" ),'Car Data'[car]= "Aston Martin"),'Car Data'[car]= "Rolls-Royce"),'Car Data'[car]= "Lamborghini"),'Car Data'[car]= "Ferrari,"),"Luxury","General")

     

    and this worked!!

     

    Thanks all for your workaround.