Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Solved! Go to Solution.
So generally you could do something like:
EUR Total - Actual =
VAR __myCalc =
CALCULATE (
SUM ( [EUR Equiv] ),
FILTER (
ALLselected ( 'Calendar'[Year/Month] ),
'Calendar'[Year/Month] <= MAX ( 'Calendar'[Year/Month] )
),'Budget Actual'[Budget,Actual]="Actual"
)
RETURN
IF(MAX('Calendar'[Date])>NOW(),BLANK(),__myCalc)
Try replace 'Calendar'[Year/Month] <= MAX ( 'Calendar'[Year/Month] ) to 'Calendar'[Year/Month] <=NOW()
EUR Total - Actual =
CALCULATE (
SUM ( [EUR Equiv] ),
FILTER (
ALLselected ( 'Calendar'[Year/Month] ),
'Calendar'[Year/Month] <=NOW()
),'Budget Actual'[Budget,Actual]="Actual"
)
Paul Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Try replace 'Calendar'[Year/Month] <= MAX ( 'Calendar'[Year/Month] ) to 'Calendar'[Year/Month] <=NOW()
EUR Total - Actual =
CALCULATE (
SUM ( [EUR Equiv] ),
FILTER (
ALLselected ( 'Calendar'[Year/Month] ),
'Calendar'[Year/Month] <=NOW()
),'Budget Actual'[Budget,Actual]="Actual"
)
Paul Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
So generally you could do something like:
EUR Total - Actual =
VAR __myCalc =
CALCULATE (
SUM ( [EUR Equiv] ),
FILTER (
ALLselected ( 'Calendar'[Year/Month] ),
'Calendar'[Year/Month] <= MAX ( 'Calendar'[Year/Month] )
),'Budget Actual'[Budget,Actual]="Actual"
)
RETURN
IF(MAX('Calendar'[Date])>NOW(),BLANK(),__myCalc)
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
116 | |
104 | |
87 | |
35 | |
35 |
User | Count |
---|---|
152 | |
98 | |
81 | |
61 | |
55 |