Hi all,
I have a visual (if you can call it even a proper visual... :)) that looks as followed.
Solved! Go to Solution.
Hi,
Your budget measure should be:
Total budget release = if(isblank([Actuals]),blank(),sum('LE 2022'[Budget release/LIP]))
Hope this helps.
Hi,
Your budget measure should be:
Total budget release = if(isblank([Actuals]),blank(),sum('LE 2022'[Budget release/LIP]))
Hope this helps.
Hi @YBZ ,
I'm not clear about your requirement. Do you want to show the red line start from the date which the yellow bar starts with the culmulative values? If yes, you can update the formula of measure [Total budget release] as below:
Total budget release =
VAR _mindate =
MINX ( ALLSELECTED ( 'LE 2022' ), 'LE 2022'[Date] )
VAR _maxdate =
MAXX ( ALLSELECTED ( 'LE 2022' ), 'LE 2022'[Date] )
VAR _seldate =
SELECTEDVALUE ( 'Calendar'[Date] )
RETURN
IF (
_seldate >= _mindate
&& _seldate <= _maxdate,
CALCULATE (
SUM ( 'LE 2022'[Budget release/LIP] ),
FILTER ( ALLSELECTED ( 'LE 2022' ), 'LE 2022'[Date] <= _seldate )
),
BLANK ()
)
If the above one can't help you, could you please provide some raw data in your table 'LE 2022' (exclude sensitive data) with Text format and your expected result with backend logic and special examples? It would be helpful to find out the solution. You can refer the following links to share the required info:
How to provide sample data in the Power BI Forum
And It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
124 | |
73 | |
66 | |
53 | |
53 |
User | Count |
---|---|
199 | |
104 | |
88 | |
79 | |
77 |