The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi,
I'm trying to calculate the running totals between my period slicer.
Atm. I can only manage to filter on max day selected and not the min with the following formula:
[Total Budgetupdated] = A calculated Measure
Period[Date] = My period tabel which the slicer isreferencing from.
Solved! Go to Solution.
Hi,
I am not sure how your datamodel looks like, but please try using ALLSELECTED dax function instead of ALL, and check whether it suits your requirement.
Cumulative Total Budget =
CALCULATE (
[Total Budget updated],
FILTER (
ALLSELECTED ( Period[Date] ),
Period[Date] <= MAX ( ( Period[Date] ) )
)
)
Hi,
I am not sure how your datamodel looks like, but please try using ALLSELECTED dax function instead of ALL, and check whether it suits your requirement.
Cumulative Total Budget =
CALCULATE (
[Total Budget updated],
FILTER (
ALLSELECTED ( Period[Date] ),
Period[Date] <= MAX ( ( Period[Date] ) )
)
)
It will still select all dates prior to my Date slicer
Hi,
Thank you for your feedback.
If it is OK with you, please share your sample pbix file's link here, and then I can try to look into it to come up with a more accurate solution.
Thank you.
User | Count |
---|---|
15 | |
13 | |
8 | |
6 | |
6 |
User | Count |
---|---|
27 | |
19 | |
13 | |
9 | |
5 |