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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
antonioaceituno
Frequent Visitor

Create Table where one of the columns values are the results of diferent measures

Hi!

 

I have created several measures in one table. Each measure is related to one month. (Ratio month 1, Ratio Month 2...etc)

Now I need to create another table, where all this Ratio measures (order by month ascending) are located in the same column, because I want to plot them in an X axis, and it would have to be segmented by other variables as well, in the same resulting table.

 

How could I do it?

Thank you so much in advance

1 ACCEPTED SOLUTION

Hi @antonioaceituno ,

 

We can't use measure in x-axis, so we need convert it to column. Just verify how your context works, as when you convert a measure - that is supposed to work in a filter context - to a column - which has a row context - your measure will calculate in a different way. You can use ROW and UNION function like below to convert your measure to column.

 

 

Table  = UNION(ROW("month",1,"measure",[measure1]),ROW("month",2,"measure",[measure2]),ROW("month",3,"measure",[measure3]))

 

 

Then you can use measure column in Table to x-axis. 

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Best Regards,

Dedmon Dai

View solution in original post

4 REPLIES 4
antonioaceituno
Frequent Visitor

@Sujit_Thakur , I need to use a Measure in X axis, so that each division in that axis is a diferent measure.
I would calculate 12 measures (one per month), and represent those calculations over the X axis.

I just can represent those measures as Values in the chart, but not along the X axis.

Thanks!

Hi @antonioaceituno ,

 

We can't use measure in x-axis, so we need convert it to column. Just verify how your context works, as when you convert a measure - that is supposed to work in a filter context - to a column - which has a row context - your measure will calculate in a different way. You can use ROW and UNION function like below to convert your measure to column.

 

 

Table  = UNION(ROW("month",1,"measure",[measure1]),ROW("month",2,"measure",[measure2]),ROW("month",3,"measure",[measure3]))

 

 

Then you can use measure column in Table to x-axis. 

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Best Regards,

Dedmon Dai

amitchandak
Super User
Super User

@antonioaceituno , measure to column conversion would be static. No impact of the slicer.

 

See of show on the row of Matrix can help

https://www.burningsuit.co.uk/blog/2019/04/7-secrets-of-the-matrix-visual/

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Sujit_Thakur
Solution Sage
Solution Sage

@antonioaceituno 

@Please elaborate and tag and reply so that I can hel

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors