Forum Discussion
letsdothis
8 years agoNew Member
Count unique daily contacts
Hi all, I've tried to look at the forum for an answer, but without luck. So i'm hoping someone is able to help me. I have the following data example: YEAR TYPE COMPANY DAT...
- 8 years ago
Sorry, I replied to your post in haste. What I did was, I created a concatenated column:
Column = TableName[TYPE] & TableName[COMPANY] & TableName[DATE]
And then I created a measure using DISTINCTCOUNT:
Measure = Calculate(DISTINCTCOUNT(TableName[Column]),TableName[TYPE]="SALES")
and it worked. Please try.
dsouzanev
8 years agoRegular Visitor
Sorry, I replied to your post in haste. What I did was, I created a concatenated column:
Column = TableName[TYPE] & TableName[COMPANY] & TableName[DATE]
And then I created a measure using DISTINCTCOUNT:
Measure = Calculate(DISTINCTCOUNT(TableName[Column]),TableName[TYPE]="SALES")
and it worked. Please try.
letsdothis
8 years agoNew Member
Thank you all for your replies.
I got the solution ow, thanks!