Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone!
I'm trying to calculate the change in two quarters, I think I'm getting close but not sure what else I am missing in my formula and hoping that someone can help. Basically, user will select a quarter and the KPI will show current value and what the change was from prior quarter.
Here are the sales figures:
Current Quarter Sales: 356
Previous Quarter Sales: 524
I created two variables to return the start dates, one for current quarter and another for previous quarter:
vCurrentQuarter: date(min([Year Month]),'YYYY-MMM')
vPreviousQuarter: date(addmonths(min([Year Month]),-3),'YYYY-MMM')
Calculation for Previous quarter sales: sum(${<'$(vCurrentQuarter)' ={"$(vPreviousQuarter)"}>} Sales)
The calculation keeps giving me current quarter sales. What am I missing? Thanks in advance!
Hi,
don't wry, plz provide me data set files
so, i will calculate accurate answer for you and tell me one thing you have created variables in front-end or back-end.
Here are the sales figures which you want , right ?
Current Quarter Sales: 356
Previous Quarter Sales: 524
Hi,
data sets attached. The association is on Date to Discharge Date. No variables here. I do have a custom field for quarter:
[Fiscal Year] &'-'&
IF([Fiscal Month]='1','Q1',
IF([Fiscal Month]='2','Q1',
IF([Fiscal Month]='3','Q1',
IF([Fiscal Month]='4','Q2',
IF([Fiscal Month]='5','Q2',
IF([Fiscal Month]='6','Q2',
IF([Fiscal Month]='7','Q3',
IF([Fiscal Month]='8','Q3',
IF([Fiscal Month]='9','Q3',
'Q4'))))))))) AS [YearQuarter]
When you filter on 2022-Q4, it should be:
Current Quarter TotalNumerCase: 107
Previous Quarter TotalNumerCase: 162