Forum Discussion

KG1's avatar
KG1
Resolver I
7 years ago
Solved

Summary Table

Hi I have a data set where 1 user can create a number of jobs in a day - I can only get the table visual to count the number of jobs a user has created. E.g On 1st July  User 1 = 50 jobs User 2 ...
  • parry2k's avatar
    7 years ago

    KG1 create a measure to distinct count users, drop date and following measure in a table visual and you will get the result.

     

    User Count = DISTINCTCOUNT( Table[User] )
  • MMartin's avatar
    7 years ago

    Hi KG1,

     

    if I have not misunderstood you the scenario is as follows:

     

     

    And you want to count how many users have created jobs. if so then the result is a DAX measure count:

     

    "CountUsersByDay = COUNT(Table1[User])"

     

    And in your table/MAtrix or visualization, you may only put the days and the new measures like the next image:

     

    I hope I've helped

    Best Regards,

    MMartin