Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Friends,
I appreciate your time.
I am looking for some help with quarter comparison.
I need to compare current quarter sales vs last year quarter(Same period) . Could you kindly share your ideas!
Thank you!
Kiruthiga
You can create two variables fro your current & previous Quarter and use them in set analysis.
Assuming that your Quarter Field format is [Quarter Year]
CurrQuarter = quartername(Max(Date))
PreQuarter = QuarterName(quartername(Max(Date)), -1)
Sorry
PreQuarter = QuarterName(quartername(Max(Date)), -1) will give you last Quarter.
Change it to -- PreQuarter = QuarterName(quartername(Max(Date)), -4)