Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am working in a QlikSense Dashboard where business has requested us for running average of previous three months for the metric calculation “Factory DEFOA DPPM”. When we are using RangeAvg function, the total column is showing as 0. Currently I have used the below expression to calculate the running average. Please let me know if we can get value in the total column in the metric table.
Num((sum(CaseID)/Num(RangeAvg(before(Sum({1<[Event Location] =,[Commodity Group]=,MonthName=,FiscalWeekStart=>}Volume), 1, 3)),'#,##0'))*1000000,'#,##0')
Have attached Metric view for reference.
Hi
Try this
Num((sum(CaseID)/Num(RangeAvg(Above(Sum({1<[Event Location] =,[Commodity Group]=,MonthName=,FiscalWeekStart=>}Volume), 1, 3)),'#,##0'))*1000000,'#,##0')
Hope this helps
Thanks
Thanks Kashyap, sorry this did solve my issue. I need column wise . Let me know if you can provide an alternate. Thanks again