Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I want to make this graph order wise like below
Solved! Go to Solution.
Hi @Anonymous ,
I created a sample pbix file(see attachment), please check whether that is what you want.
1. Create a sorted table by manual typing. You can also put this sorted table on a cloud-based file (e.g. OneDrive), which makes it easy to maintain and refresh later.
2. Select the field "Reduction buckets" and sort by column "Order"
3. Update the formula of your measure [Total Month] as below:
Total Month =
VAR _selbucket =
SELECTEDVALUE ( 'OrderTable'[Reduction buckets] )
RETURN
IF (
_selbucket = "Total Month Variation",
CALCULATE (
SUM ( 'Master Data Base'[Value] ),
ALLSELECTED ( 'OrderTable'[Reduction buckets] )
),
CALCULATE (
SUM ( 'Master Data Base'[Value] ),
FILTER (
'Master Data Base',
'Master Data Base'[Reduction buckets] = _selbucket
)
)
)
4. Create a clustered column chart(Axis:Reduction buckets of table OrderTable Values: Total Month)
Best Regards
Hi @Anonymous ,
I created a sample pbix file(see attachment), please check whether that is what you want.
1. Create a sorted table by manual typing. You can also put this sorted table on a cloud-based file (e.g. OneDrive), which makes it easy to maintain and refresh later.
2. Select the field "Reduction buckets" and sort by column "Order"
3. Update the formula of your measure [Total Month] as below:
Total Month =
VAR _selbucket =
SELECTEDVALUE ( 'OrderTable'[Reduction buckets] )
RETURN
IF (
_selbucket = "Total Month Variation",
CALCULATE (
SUM ( 'Master Data Base'[Value] ),
ALLSELECTED ( 'OrderTable'[Reduction buckets] )
),
CALCULATE (
SUM ( 'Master Data Base'[Value] ),
FILTER (
'Master Data Base',
'Master Data Base'[Reduction buckets] = _selbucket
)
)
)
4. Create a clustered column chart(Axis:Reduction buckets of table OrderTable Values: Total Month)
Best Regards
I want to make this graph order wise like below
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 10 | |
| 6 | |
| 4 | |
| 4 | |
| 3 |