I have transactional data set.
Each transaction is linked to employee.
I would like to present a report with daily average number of transactions per employee.
How can it be achieved in quicksight?
I need to have average function over daily count function.
I have used the avgOver and was able to calculate the daily average per employee.
avgOver(count{trx_id}),[{employye_name}])
However, in order to present it I need to add to the table the employee_name and trx_date.
Once I remove the trx_date from the view, the average is calculated per day and presents exactly same values as the count per day.
So, I tried to use the following calculation:
avgOver(count{trx_id}),[{employye_name},{trx_dae}])
and when using in the table only employee name and daily average measure got the following error:
VISUAL_CALC_REFERENCE_MISSING
How can I have a table presenting the employee_name and average_daily_number_of_transactions?