I would like to know if I can use some form of COUNT DISTINCT at the powerpivot table level?
The following works fine for counting the table but I need it to count the UNIQUE phone #'s by Salesperson and Day.
I am not sure if CALCULATE could somehow help with this or not.
It could also just return a flag of "1" if the number is unique for a day, so I can sum those later.
=COUNTROWS(DISTINCT(Calls[Destination#]))
I realize I could feed this to a pivot table and use CountDistinct but in this instance I need the data flat.
The following works fine for counting the table but I need it to count the UNIQUE phone #'s by Salesperson and Day.
I am not sure if CALCULATE could somehow help with this or not.
It could also just return a flag of "1" if the number is unique for a day, so I can sum those later.
=COUNTROWS(DISTINCT(Calls[Destination#]))
I realize I could feed this to a pivot table and use CountDistinct but in this instance I need the data flat.