Forum Discussion
Anonymous
7 years agoNot applicable
undefined
Hi everyone, I want to create a measure which shows the day of the week with the highest amount of customers. Unfortunately, the DAX-function MAX doesn't work here. Our customers have ID-numbers....
- 7 years agoYou can use TopN and RankX to get the day with highest customer visits.
Use RankX to rank the days using the current measure that you have. You can then use the TopN function to get the top day.
Thanks
Nishantjain
7 years agoContinued Contributor
You can use TopN and RankX to get the day with highest customer visits.
Use RankX to rank the days using the current measure that you have. You can then use the TopN function to get the top day.
Thanks
Use RankX to rank the days using the current measure that you have. You can then use the TopN function to get the top day.
Thanks
Anonymous
7 years agoNot applicable
Hi Nishantjain and Ashish_Mathur ,
Thank you for your respons and interest. The Rankx formula was the one I needed. Maybe I need to fine tune the tables (and thus some formulas) in the future, but for no it is sufficient.
Thanks.