Forum Discussion
Anonymous
5 years agoNot applicable
DISTINCTCOUNT
This Data is about the Monthly Serviced units. One unit can get serviced multiple times in a month or year. However, when I count the total unit serviced I do not want the same unit being accounte...
- 5 years ago
Anonymous
5 years agoNot applicable
Thank you Ashish for taking a look. Here is the File Link.
Ashish_Mathur
Super User
5 years agoHi,
Try this measure
=
Count = if(HASONEVALUE(Data[Month]),DISTINCTCOUNT(Data[Model]),DISTINCTCOUNT(Data[SerialNumber]))
Hope this helps.