Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
I have two fields, [Number of People in Building] (Numeric) and [Hour] (00:00 - 23:00) respectively.
I would now like to calculate which hour of the day has the most number of people in the building on an average.
How can I do this?
=Max(Aggr(SUM( [Number of People in Building]),Hour))
This will give you Max Number of People on any hour
=FirstSortedValue(Hour, -Aggr(SUM( [Number of People in Building]),Hour))
This will give you Hour when the Number of People are Maximum compare to all Hour.
Hi,
You can try like this.
Dimension: Hour
Expression: Avg( [Number of People in Building])
Hi Tumelo,
PFA.
Hope it helps.
Regards
KC