Forum Discussion
PP_DP
5 years agoFrequent Visitor
distinct Customer this month
Hi All, I am new to PowerBI & Dax, please help me i can count Customer is not dintinct in this month per day and per week To achieve this, I have created an Customer Table, Master Date ...
- 5 years ago
Hi PP_DP ,
Base on the table you provide,you could try the following steps:
Mon
Mon = RIGHT('Table'[DAY],3)Day
Day1 = LEFT('Table'[DAY],LEN('Table'[DAY])-4)Count:
COUNT = DISTINCTCOUNT('Table'[Cus name])Final create visualization:
Wish it is helpful for you!
Best Regards
Lucien
v-luwang-msft
Community Support
5 years agoHi PP_DP ,
Base on the table you provide,you could try the following steps:
Mon
Mon = RIGHT('Table'[DAY],3)
Day
Day1 = LEFT('Table'[DAY],LEN('Table'[DAY])-4)
Count:
COUNT = DISTINCTCOUNT('Table'[Cus name])
Final create visualization:
Wish it is helpful for you!
Best Regards
Lucien