Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I’m trying to figure out how to show weekly average of this year’s meetings as a KPI. I am using autocalendar. I have the function for the total of this year’s meetings, but how to add the divider?
Count(
{1<[Unit] = {‘Nordic’},
[ce_meetings.date.autoCalendar.YearsAgo] = {[0]}>}
[ce_meetings.])
Now I should divide this year's total by the amount of weeks passed this year (i.e by the number of current week). Should be very easy, but I just can’t figure out. Could somebody advise me?
divide your expression by week(today())
current week of today is 21
Hi,
You can use the following:
Count({1<[Unit] = {‘Nordic’},[ce_meetings.date.autoCalendar.YearsAgo] = {[0]}>}[ce_meetings.])
/
Round((Today()-YearStart(Today()))/7)
// Add this if you only want the finished weeks
(Round((Today()-YearStart(Today()))/7)-1)
Jordy
Climber
divide your expression by week(today())
current week of today is 21