Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have gauge chart where I am calculating the closing rate of sales. I also have a straight table where I calculating the same closing rate.
In the straight table I show the closing rate by the YearMonth dimension and my total mode is doing an 'Average of the Rows.'
In the gauge chart I have also selected the total mode to compute an 'Average of the Rows.' My text in chart expression is calculating the closing rate but I can not get it to compute the same value as the Average of Rows function. I need my straight table and gauge chart to reflect the same result.
What do I need to do to my expression so it calculates the same as the Average of Rows function? Any suggestions would be appreciated! Below is my expression...
= num(count(distinct sales) / count(distinct presentations))*100,'#,###.##') & '%'
Try this:
num(avg(aggr(count(distinct sales) / count(distinct presentations)),YearMonth)*100,'0.00%')
Regards,
Kiran
Try this:
num(avg(aggr(count(distinct sales) / count(distinct presentations)),YearMonth)*100,'0.00%')
Regards,
Kiran
Thanks Kiran that worked!
I am also facing the same issue and I am new to qlik sense. I can not get the average result in the gauge. The total function in table is showing average result but gauge is showing sum instead of average.
I am using this formula -
(Avg((Aggr(Sum({<date=,Year={2021}>}Amount),EmployeeCount))))
What should I do to display average in the gauge? Any help would be very much appreciated!