I am trying to find the difference between Quarters in two different years in Power BI DAX. Below is the result i am expecting.
I tried this calculation but dint get the expected result. Please help
Diff =
CALCULATE (
SUM(Sample_Data[# Phone Inbound Forecast]),
FILTER (
ALL (Sample_Data[Submit Month] ),
Sample_Data[Submit Month]= "FY20BD"
)
)
- CALCULATE (
SUM(Sample_Data[# Phone Inbound Forecast]),
FILTER (
ALL (Sample_Data[Submit Month]),
Sample_Data[Submit Month] = "Dec-19"
)
)