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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.