Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Anonymous
Not applicable

Power BI - Switch values to column

Hello all, I would like to do the change below:

ElQuon11_1-1650351216222.png

I have the data in Power BI from the left and would like to have a visualization on the right.
To precise the data like 2106 are words, not number. Also for some items on my list, I don't have ""Gate 2" so it will be NA.


I checked alreay online but couldn't find solutions...

 

Can you please help me?

1 ACCEPTED SOLUTION
v-yalanwu-msft
Community Support
Community Support

Hi, @Anonymous ;

We could create a new table by dax.

Table 2 = 
var _a=SUMMARIZE(FILTER('Table',[Gate1]<>BLANK()),[Gate1],[Title],"Gate","Gate1")
var _b= SUMMARIZE(FILTER('Table',[Gate2]<>BLANK()),[Gate2],[Title],"Gate","Gate2")
var _c= EXCEPT(SUMMARIZE( SUMMARIZE( GENERATESERIES(2102,2112,1),[Value],"1",FORMAT([Value],"0")),[1]),UNION(VALUES('Table'[Gate1]),VALUES('Table'[Gate2])))
return UNION(_a,_b, SUMMARIZE( _c,[1],"Title",BLANK(),"Gate",BLANK()))

Then create a index column.

Index = RANKX(ALL('Table 2'),[Title])

Put it into matrix then aujust it.

vyalanwumsft_0-1650609711702.png

steped layout ->off; wrap-> off;icon-> off;

vyalanwumsft_1-1650609739168.pngvyalanwumsft_2-1650609753492.pngvyalanwumsft_3-1650609775889.png

vyalanwumsft_4-1650609883079.png

The final output is shown below:

vyalanwumsft_5-1650609901613.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

1 REPLY 1
v-yalanwu-msft
Community Support
Community Support

Hi, @Anonymous ;

We could create a new table by dax.

Table 2 = 
var _a=SUMMARIZE(FILTER('Table',[Gate1]<>BLANK()),[Gate1],[Title],"Gate","Gate1")
var _b= SUMMARIZE(FILTER('Table',[Gate2]<>BLANK()),[Gate2],[Title],"Gate","Gate2")
var _c= EXCEPT(SUMMARIZE( SUMMARIZE( GENERATESERIES(2102,2112,1),[Value],"1",FORMAT([Value],"0")),[1]),UNION(VALUES('Table'[Gate1]),VALUES('Table'[Gate2])))
return UNION(_a,_b, SUMMARIZE( _c,[1],"Title",BLANK(),"Gate",BLANK()))

Then create a index column.

Index = RANKX(ALL('Table 2'),[Title])

Put it into matrix then aujust it.

vyalanwumsft_0-1650609711702.png

steped layout ->off; wrap-> off;icon-> off;

vyalanwumsft_1-1650609739168.pngvyalanwumsft_2-1650609753492.pngvyalanwumsft_3-1650609775889.png

vyalanwumsft_4-1650609883079.png

The final output is shown below:

vyalanwumsft_5-1650609901613.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.