Forum Discussion

Mace's avatar
Mace
New Member
4 years ago
Solved

Represent multiple column values in separate columns instead of separate rows

Hello, I'm new to PBI and this thing may be trivial. When I make a table of data i have the situation as on the first picture (multiple rows for different values in the column) and would wan...
  • v-xiaotang's avatar
    4 years ago

    Hi Mace 

    Dax code, create 3 columns,

    test1 = IF(CALCULATE(COUNT('Table'[CHANNEL]),FILTER(ALLEXCEPT('Table','Table'[MFG_P],'Table'[PART_NUMBER]),'Table'[CHANNEL]="DIST"))>0,"DIST")
    test2 = IF(CALCULATE(COUNT('Table'[CHANNEL]),FILTER(ALLEXCEPT('Table','Table'[MFG_P],'Table'[PART_NUMBER]),'Table'[CHANNEL]="EMS"))>0,"EMS")
    test3 = IF(CALCULATE(COUNT('Table'[CHANNEL]),FILTER(ALLEXCEPT('Table','Table'[MFG_P],'Table'[PART_NUMBER]),'Table'[CHANNEL]="OEM"))>0,"OEM")

    result

     

    Best Regards,

    Community Support Team _Tang

    If this post helps, please consider Accept it as the solution to help the other members find it more quickly.