March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I created a running sum quick measure which is giving correct order of data in table but is showing in descending order in column chart which actually shuffles the dates. Is there any solution to this problem.
Running sum =
CALCULATE(
SUM('d_targets'[prd_target]),
FILTER(
ALLSELECTED('d_calendar'[calendar_date]),
ISONORAFTER('d_calendar'[calendar_date], MAX('d_calendar'[calendar_date]), DESC)
)
)
Solved! Go to Solution.
At the top right of the visual, click on the ... (More Option), Sort Axis and select the Date field instead of the Running Sum
You can just reverse the sort ordering
User | Count |
---|---|
120 | |
77 | |
58 | |
52 | |
46 |
User | Count |
---|---|
171 | |
117 | |
63 | |
57 | |
51 |