Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Unique Counts by Hour

Hi! I'm trying to count the unique number of combinations between two columns by hour. For example: I have data that looks like this:         I want to get the counts of unique pairi...
  • mauriciosotero's avatar
    6 years ago

    First, check if the default summarization of the column hour is “Don’t summarize”:

     

     

    Then, create a new column for the Unique combination you want to count:

    Unique Combination = CONCATENATE('Table'[Column1],'Table'[Column2])

     

    So, create a measure Counts:

    Counts = COUNT('Table'[Hour])

    Finnaly, you can create you a table to visualize your result:

     

     

    If it helps, pls mark this post as a solution and give a kudo. Thanks