Forum Discussion

Stavros2024's avatar
Stavros2024
Regular Visitor
1 year ago
Solved

Counting Union/Duplicates in a table or multiple tables

Hi everyone,   I have one large table (30K plus rows) with 3 headings - Full Name, State and Cell Phone.  What I am trying to do is to count the number of Contacts based on the Cell Phone that are ...
  • Selva-Salimi's avatar
    Selva-Salimi
    1 year ago

    Stavros2024 

     

    you can write a measure as follows:

     

    measure _dupicate_count := var tbl= summarize ( your_table , full_name ,"total" , [all duplicate])

    return

    sumx(tbl , total)

     

    and this measure to a card. 

     

    If this post helps, then I would appreciate a thumbs up and mark it as the solution to help the other members find it more quickly.