Forum Discussion
KatieH
9 years agoAdvocate IV
Daily Targets
Hi all, hoping to get some help and guidance around adding target info to my Dashboard. I have report that shows all calls made by a Department in the Company (Call Department). This data is the...
- 9 years ago
It's not very hard to create such a table. I have tested it on my local environemnt, the steps below are for you reference.
- Create a employee table.
- Create a date table.
Date = CALENDAR(DATE(2017,9,1),DATE(2017,9,30)) - Cross join those two tables.
Table = CROSSJOIN('Date',Employee) - Create two column in new table.
Target = IF(WEEKDAY('Table'[Date])>=2&&WEEKDAY('Table'[Date])<=6,25,0)
MaxValue = IF(WEEKDAY('Table'[Date])>=2&&WEEKDAY('Table'[Date])<=6,40,0)
Regards,
Charlie Liao
v-caliao-msft
9 years agoMicrosoft Employee
It's not very hard to create such a table. I have tested it on my local environemnt, the steps below are for you reference.
- Create a employee table.
- Create a date table.
Date = CALENDAR(DATE(2017,9,1),DATE(2017,9,30)) - Cross join those two tables.
Table = CROSSJOIN('Date',Employee) - Create two column in new table.
Target = IF(WEEKDAY('Table'[Date])>=2&&WEEKDAY('Table'[Date])<=6,25,0)
MaxValue = IF(WEEKDAY('Table'[Date])>=2&&WEEKDAY('Table'[Date])<=6,40,0)
Regards,
Charlie Liao