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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
I would like to ask how to make that measure calculation will respond only to this changes?
My formula which doesn't work. How to resolve the issue?
Solved! Go to Solution.
Hi @Analitika
You can fix the start date of slicer without creating a measure.
Add the field [date] in Slicer and set the start date in visual filter. Make the value of date is on or after specified date. Then in options of slicer and choose Before , slicer will fix the start date you set in visual filter.
I have attached my pbix file , you can refer to it.
Best Regard
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Analitika
You can fix the start date of slicer without creating a measure.
Add the field [date] in Slicer and set the start date in visual filter. Make the value of date is on or after specified date. Then in options of slicer and choose Before , slicer will fix the start date you set in visual filter.
I have attached my pbix file , you can refer to it.
Best Regard
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Analitika ,
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
It should not respond to the start date ?
Do you need before or after, then you have those option in that small down arrow
Yes should not respond to start date.
@Analitika , Then this should work
New Measure =
Var _max = maxx(allselected(Date) , Date[date])
return
calculate(sum(Table[value]), filter(all('Date'), Date[date] =_max))
or <=before , but prefer before slicer for that
New Measure =
Var _max = maxx(allselected(Date) , Date[date])
return
calculate(sum(Table[value]), filter(all('Date'), Date[date] <=_max))
If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Still not works. Here is an error:
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!