Forum Discussion
PaulCo
8 years agoHelper II
Cumulative Formula Measure
I've read some of the other threads and have tried to apply to my dashboard but am having troubles with the Formula. I am trying to count the number of registrations that we have over a period o...
- 8 years ago
Have you reviewed the dax pattern for this yet? I found this article very helpful personally.
http://www.daxpatterns.com/cumulative-total/
Perhaps you are looking for the distinct count?
CALCULATE ( DISTINCTCOUNT(Stratas_SC_Registration_Prod [Supplier Company Name])....
mow700
8 years agoResolver I
Have you reviewed the dax pattern for this yet? I found this article very helpful personally.
http://www.daxpatterns.com/cumulative-total/
Perhaps you are looking for the distinct count?
CALCULATE ( DISTINCTCOUNT(Stratas_SC_Registration_Prod [Supplier Company Name])....
PaulCo
8 years agoHelper II
Thanks, I managed to work it out using the link.