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
Hello,
I try to make a graph that show from the first month of the selected year until selected month filter.
(example: when we select year 2021 and month 5, it will show from january to may)
But as you can see from the pic, when the filters at 2021 05, the graph just show may, not from january until may.
Here's the look of my data:
This is period table
and this is model table
I've already make 2 measure that contain Start and End Period
This measure to always show First Month:
This Measure that I put on the Graph:
Please help where that i did wrong.
Here's I attached my pbix (Page2)
PBIX Testing
Solved! Go to Solution.
hi @agustira97
tried to simulate your scenario with simplified dataset like:
1) plot a slicer with a column from an isolated table like:
2) plot a visual with month column of your record table and a measure like this:
Measure =
IF(
MAX(TableName[Month])<=SELECTEDVALUE(Slicer[MonthSlicer]),
SUM(TableName[Amt]),
BLANK()
)
You see, when you choose a different month in the slicer, the chart axis changes accordingly:
The piont is:
the column to feed the slicer needs to be isolated from your record table, otherwise you selecting a data point instead of a range.
Hi, thank you for the answer @FreemanZ
I've already tried it on my case and It works.
Next Question is, this slicer not just on 1 graph, but also the other graph. It means another graph measure also need to adjust with this isolated slicer right?
Cause I have another chart like gauge chart, but I dont need to sum from the first month of the year, it just need to sum from selected year.
Just to make sure, Thank you.
hi @agustira97
tried to simulate your scenario with simplified dataset like:
1) plot a slicer with a column from an isolated table like:
2) plot a visual with month column of your record table and a measure like this:
Measure =
IF(
MAX(TableName[Month])<=SELECTEDVALUE(Slicer[MonthSlicer]),
SUM(TableName[Amt]),
BLANK()
)
You see, when you choose a different month in the slicer, the chart axis changes accordingly:
The piont is:
the column to feed the slicer needs to be isolated from your record table, otherwise you selecting a data point instead of a range.
Hi @FreemanZ
This is my question also, i used your measure in my scenerio .but from my side this measure is not working ,attached screenshot for reference. please give breif answer as soon as possible.
Regards,
Vidya
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
25 | |
18 | |
15 | |
9 | |
8 |
User | Count |
---|---|
37 | |
32 | |
21 | |
16 | |
14 |