The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
26 | |
10 | |
8 | |
6 | |
5 |
User | Count |
---|---|
33 | |
13 | |
12 | |
9 | |
7 |