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
OttoKnoke
Regular Visitor

Separate columns

Hi,

 

I have a column chart visual with two columns. Is it possible to separate the columns on the x-axis? Thanks in advance for any help.

2022-07-24_11-38-49.png

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

Hi, @OttoKnoke ;

Clustered column chart aligns with each labels and group by legends, not support auto fit them. I'd like to suggest you post this requirement to ideas.
Or  you could add another table such as:
1. create a table.

Legend = ADDCOLUMNS( UNION( VALUES('financials'[Year]),{BLANK()}),"rank",IF([Year]=2013,1,IF([Year]=2014,3,2)))

 2.create a measure.

sum = CALCULATE(SUM(financials[ Sales]),FILTER('financials',[Year]=MAX('Legend'[Year])))+0

3. sort by rank column.

vyalanwumsft_0-1658975523065.png

The final show:

vyalanwumsft_1-1658975551827.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

4 REPLIES 4
v-yalanwu-msft
Community Support
Community Support

Hi, @OttoKnoke ;

Clustered column chart aligns with each labels and group by legends, not support auto fit them. I'd like to suggest you post this requirement to ideas.
Or  you could add another table such as:
1. create a table.

Legend = ADDCOLUMNS( UNION( VALUES('financials'[Year]),{BLANK()}),"rank",IF([Year]=2013,1,IF([Year]=2014,3,2)))

 2.create a measure.

sum = CALCULATE(SUM(financials[ Sales]),FILTER('financials',[Year]=MAX('Legend'[Year])))+0

3. sort by rank column.

vyalanwumsft_0-1658975523065.png

The final show:

vyalanwumsft_1-1658975551827.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.

v-yalanwu-msft
Community Support
Community Support

Hi, @OttoKnoke ;

You could add a blank measure then put it into visual.

Measure = BLANK()

vyalanwumsft_0-1658890204249.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.

Thanks, I did your solution, but who does for the blank measure to not show in the legend? 

jennratten
Super User
Super User

If you have related dimension tables you can add a column from the dimension table to separate the x axis.  In your example above, you should have a measure created for the sum of the amount and a related dimension table with a column containing open/closed.  The example below shows a column chart with a measure in the value and three dimensions on the x-axis.

jennratten_0-1658687712629.png

 

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