Forum Discussion
Creating a Measure for individual count and total
- 7 years ago
Hey,
create a measure ( https://docs.microsoft.com/en-us/power-bi/desktop-tutorial-create-measures ) like so:
Count of ID = COUNT('<name of your table>'[ID])If your table might contain the same ID more than once per year then you might consider replacing the COUNT ( https://dax.guide/count/ )function with DISTINCTCOUNT ( https://dax.guide/distinctcount/ ).
Use the column "Year" (from your existing table) and the measure in a table visual - done :-)
Hopefully, this provides some new insights.
Regards,
Tom
Hey,
create a measure ( https://docs.microsoft.com/en-us/power-bi/desktop-tutorial-create-measures ) like so:
Count of ID = COUNT('<name of your table>'[ID])
If your table might contain the same ID more than once per year then you might consider replacing the COUNT ( https://dax.guide/count/ )function with DISTINCTCOUNT ( https://dax.guide/distinctcount/ ).
Use the column "Year" (from your existing table) and the measure in a table visual - done :-)
Hopefully, this provides some new insights.
Regards,
Tom