Forum Discussion
d2hughes
4 years agoNew Member
Count of Counts
Hello, I am going to try this again, last time I posted it was marked as spam. I think it was because it was my first post and I included a link to a sample .pbix from my OneDrive. I need to ...
- 4 years ago
Hi d2hughes
Try this code to create a new table:
Table = GROUPBY( SUMMARIZE( Visits, Visits[ContactID], "Visits", COUNTROWS( FILTER( 'Visits', Visits[ContactID] = Visits[ContactID] ) ) ), [Visits], "Count of Visitors", COUNTX( CURRENTGROUP(), [ContactID] ) )output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
d2hughes
4 years agoNew Member
Yes this looks correct! I made this a simple sample but it should translate to the actual data I am working on.
Thank you so much!