Forum Discussion
Sum by group
- 8 years ago
TomMartensTom.
I have already this measure :) but its not what i want.
I found another solution with filter and Username.
Thank you for the reference also.
Have a nice day.
Dimitri
Hey,
I'm wondering if a "simple" table visual is sufficient for your use case, but what you are looking for can be achieved easily (as far as I understand your requirement):
Here is a little screenshot:
You just have to change the aggregation function to count for the User column.
Maybe this is already what you are looking for, if this is not the case, please describe why you need a measure in more detail.
Regards,
Tom
Anonymous
Thank you for your response.
It help me, i have also find this solution but why I need measure or column.
To know the values of the column theorical working days, I need the number of user.
Total Theorical working hours = number of user * 25200
To know the account of users per manager
Then with measure or column, i dont know what's the best way, I can calculate the total of the "real working hours "
The finality of this, it's not the table visualisation but to show me, in différent team, if the guys encode time or not and what's the attendees.
- TomMartens8 years agoSuper User
Hey,
understand ...
So, basically it's always a good idea to create a measure instead of a calculated column, the advantages are
- smaller memory footprint (this becomes more apparent with larger datasets)
- interact with selection made by the user (e.g. slicer)
there is one disadvantage of a measure
- it can't be used as a slicer
Here is a simple example for a measure that counts the user
User cnt = DISTINCTCOUNT( 'Table1'[User] )If you want to start learning DAX my current recommendation is the book "Beginning DAX" by Phil_Seamark
Maybe this gets you started.
Regards,
Tom
- Milozebre8 years agoHelper V
TomMartensTom.
I have already this measure :) but its not what i want.
I found another solution with filter and Username.
Thank you for the reference also.
Have a nice day.
Dimitri