Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!View all the Fabric Data Days sessions on demand. View schedule
Hi everyone!
I have a dataset like this:
Basically in every row No 1 has got value in column "status 1", No 2 has got value in a colum "Status 2" etc.
I am trying to figure out how to convert this dataset into matrix or table like this:
Would you be able to share any ideas how to do this?
Thanks!
Solved! Go to Solution.
you can try to create a new table
Table 2 =
VAR t1=SELECTCOLUMNS('Table',"No",'Table'[No1],"Status",'Table'[status1])
VAR t2=SELECTCOLUMNS('Table',"No",'Table'[No2],"Status",'Table'[status2])
VAR t3=SELECTCOLUMNS('Table',"No",'Table'[No3],"Status",'Table'[status3])
RETURN UNION(t1,t2,t3)
Proud to be a Super User!
you can try to create a new table
Table 2 =
VAR t1=SELECTCOLUMNS('Table',"No",'Table'[No1],"Status",'Table'[status1])
VAR t2=SELECTCOLUMNS('Table',"No",'Table'[No2],"Status",'Table'[status2])
VAR t3=SELECTCOLUMNS('Table',"No",'Table'[No3],"Status",'Table'[status3])
RETURN UNION(t1,t2,t3)
Proud to be a Super User!
you are welcome.
Proud to be a Super User!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!