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
Hi everyone!
I have a static date filter in one measure.
For ecample: Today() -1.
But I need that this filter, Today()-1, calculate about selction date.
I need this, because some measures are specific to that date and others are accumulated until that date.
In summary, I need a variable / measure associated with the user's date selection.
Solved! Go to Solution.
Hi @gabrielvigo,
Try these formulas below.
Test =
CALCULATE (
SUM ( Supply_Chain[Operations Stockouts] );
FILTER (
ALL ( 'Calendar'[Fecha] );
'Calendar'[Fecha] = SELECTEDVALUE ( 'Calendar'[Fecha] )
)
)
Test2 =
CALCULATE (
SUM ( Supply_Chain[Operations Stockouts] );
FILTER (
ALL ( 'Calendar'[Fecha] );
'Calendar'[Fecha] <= SELECTEDVALUE ( 'Calendar'[Fecha] )
)
)
Best Regards,
Dale
So typically you do this with a slicer and something like MAX or SELECTEDVALUE. "What If" measures were created for this purpose.
Hi.
No, I can't calculate them.
I need 2 calculations:
Hi @gabrielvigo,
Try these formulas below.
Test =
CALCULATE (
SUM ( Supply_Chain[Operations Stockouts] );
FILTER (
ALL ( 'Calendar'[Fecha] );
'Calendar'[Fecha] = SELECTEDVALUE ( 'Calendar'[Fecha] )
)
)
Test2 =
CALCULATE (
SUM ( Supply_Chain[Operations Stockouts] );
FILTER (
ALL ( 'Calendar'[Fecha] );
'Calendar'[Fecha] <= SELECTEDVALUE ( 'Calendar'[Fecha] )
)
)
Best Regards,
Dale
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!
| User | Count |
|---|---|
| 57 | |
| 45 | |
| 42 | |
| 20 | |
| 18 |
| User | Count |
|---|---|
| 169 | |
| 109 | |
| 91 | |
| 55 | |
| 44 |