Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
tomtang
Helper III
Helper III

Dynamic Waterfall Chart toggle between Budget/Forecast/Budget

Dear all,

 

I am trying to create a dynamic waterfall chart allows the user to toggle between Forecast/Budget/Last Year comparing to this year Actual.

 

Sample as below chart.

 

Capture1.PNG

 

Forecast/Budget are working fine since these categories fall into the same year.

Below is my DAX for Forecast and Budget:

 

DynamicSumYTD_WaterFall =
VAR _SelectedCategory = SELECTEDVALUE(Par_Category[Column1],"Budget")

RETURN
SWITCH(_SelectedCategory,
"Forecast",
CALCULATE(TOTALYTD([Sum],'Date'[Date]),FILTER(VALUES(Fact_Sample[Category_R]),Fact_Sample[Category_R] IN {"A","F"})),
"Budget",
CALCULATE(TOTALYTD([Sum],'Date'[Date]),FILTER(VALUES(Fact_Sample[Category_R]),Fact_Sample[Category_R] IN {"A","B"})),
CALCULATE(TOTALYTD([Sum],'Date'[Date]),FILTER(VALUES(Fact_Sample[Category_R]),Fact_Sample[Category_R] IN {"A","B"}))
)

 

My difficulty is on "Last Year", with below DAX, I can successfully fetch both current year and last year Actual in one measure 

 

DynamicSumYTD_Waterfall_AvLY_v1 =

CALCULATE([Sum],
FILTER(
ALL('Date'[Date],'Date'[Calendar Year],'Date'[Month Number]),
'Date'[Month Number]<=VALUES('Date'[Month Number]) && ('Date'[Calendar Year] = VALUE('Date'[Calendar Year])-1 || 'Date'[Calendar Year] = VALUE('Date'[Calendar Year]))))
 
Capture2.PNG
 
So I revise the code with below trying to get rid of Forecast and Budget:
DynamicSumYTD_Waterfall_AvLY_v2 =

CALCULATE([Sum],
FILTER(
ALL('Date'[Date],'Date'[Calendar Year],'Date'[Month Number]),
'Date'[Month Number]<=VALUES('Date'[Month Number]) && ('Date'[Calendar Year] = VALUE('Date'[Calendar Year])-1 || 'Date'[Calendar Year] = VALUE('Date'[Calendar Year]))),EXCEPT(VALUES(Fact_Sample[Category_R]),{"F","B"}))
 
However, this DAX eventually can only show Actual current year.
 
Have attached my sample file in below link, please kindly take a look, thank you! 🙂
 
 
1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@tomtang 

 

You may add CALCULATETABLE.

CALCULATETABLE ( VALUES ( Fact_Sample[Category_R] ), ALL ( 'Date' ) ),

 

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-chuncz-msft
Community Support
Community Support

@tomtang 

 

You may add CALCULATETABLE.

CALCULATETABLE ( VALUES ( Fact_Sample[Category_R] ), ALL ( 'Date' ) ),

 

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-chuncz-msft 

 

Thanks for the response.

 

In my actual case, it's a bit more complicated than the sample, since I add the other dimension (column) in the waterfall chart (which is "Segment")

 

But I finally achieve my expectation with the following code from your suggestion, just share if someone else might need it.

(I still not quite sure how does it works, need some more study on CALCULATETABLE)

 

CALCULATE([USDsum],
FILTER(
ALL(Dim_Calendar[FullDateAlternateKey],Dim_Calendar[Year],Dim_Calendar[Month]),
Dim_Calendar[Month]<=VALUES(Dim_Calendar[Month]) &&
(Dim_Calendar[Year] = VALUE(Dim_Calendar[Year])-1 || Dim_Calendar[Year] = VALUE(Dim_Calendar[Year]))
),
EXCEPT(CALCULATETABLE(VALUES(Fact_BUCONSOL_Union[Category_R]),ALL(Dim_Calendar[FullDateAlternateKey],Dim_Calendar[Year],Dim_Calendar[Month])),{ "B","F"})
)
 
 
@v-chuncz-msft Thanks again and cheers!
tomtang
Helper III
Helper III

Haha, anyone can help?

 

Thanks a lot!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.