Forum Discussion
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. To calculate our customers, I had the use a measure with the function DistinctCount. So, is there a way to solve this?
- 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
5 Replies
- AnonymousNot applicable
Hey Anonymous !
I'm not too sure what part of the data model you are trying to use to arrive at your desired outcome.
Obviously, you have some table that display days of the week, & some table with customer ids.
Which customer activity are you wanting to track during the weekdays? Are they filling out surveys? Are they visiting your location? Are they purchasing items?
Do you have sample data you can provide?
- AnonymousNot applicable
Hey Anonymous !
Thanks for your response. I will try to be as clear as possible.
Our customers are visiting our locations. That is what we're keeping track of. We know how many unique visitors we have each day. We can use a date slicer to select a week, weeks, months, etc. to show the unique visitors in the selected period.
This graph has two variables: number of customers (which is a measure (DistinctCount(Customer_ID) and day_description (Monday, Tuesday, ....). This day_description is linked with our Calendar.
I hope this helps! Otherwise, let me know if you need more information.
- Ashish_MathurSuper User
Hi,
What exact result are you expecting?