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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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