Forum Discussion
Mace
4 years agoNew Member
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...
- 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.
amitchandak
4 years agoSuper User
Mace , One way is to unpivot the data in power query
https://radacad.com/pivot-and-unpivot-with-power-bi
Second is channel as column in matrix visual