Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
I got call center data (i.e. 15 mins intervals) that starts from 27 October 2022 to 28 March 2023. I want to show the average no of call handled every week and want to show it against the no of weeks. I used the following measure to calculate the average no of calls.
I showed it against week number on table visual as shown below:
The total no of calls handled in the first week is 1924 and the average number of calls handled during the first week is 962. The puzzling bit for me is that there is only one week of data related to the first week (i.e. Janaury 2023) available, and there is no first-week data from other years. So the average of first-week calls handled should be the same as the sum of first-week calls handled as there is no first-week data from other years. Average measure just doing half of the total call attended in particular week. Not sure where I made mistake. Any help would be appreciated.
Sample Data here
@Dunner2020 , Join date without time stamp to a date table and have year week column there. Year and week need to be columns not expressions
Averagex(
SUMMARIZE(ADDCOLUMNS(Sheet1, DAte[Year]), Date[Week], "Calls attended", SUM(Sheet1[Contacts handled]) ),
[Calls attended] )
or
Averagex(
SUMMARIZE(ADDCOLUMNS(Sheet1, Sheet1[Year]), Sheet1[Week], "Calls attended", SUM(Sheet1[Contacts handled]) ),
[Calls attended] )
@amitchandak , addcolumn function does not let to add Date[Year] as column. ?????????
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
90 | |
87 | |
84 | |
66 | |
49 |
User | Count |
---|---|
131 | |
110 | |
96 | |
70 | |
67 |