Count Repeated Values

Hi I need a dax formula to count up the number of times the number five appears in a column.

1 Like

hi there,

please review the video this will help you in what you are looking for.

thanks
Keith

Hey, Michael
simple you have to change col to Dont summarize option from coloumn tool
They write measure
Number count= Count(Stars)

Warm Regards,
Pankaj

Thank you!! Sorry if it seemed so simple.

welcome @michael.gyure

I usually just type in the search bar what I want to try to accomplish in either the EDNA forum or youtube.

I also check out the courses/labs within EDNA portal

thanks
Keith

1 Like

Hi @michael.gyure ,

First chek that you Have summarization None

and then just add a measures :

You can use:
a) COUNTROWS - to count the rows in the table
b) DISTINCTCOUNT - if you have for example ID that you want count distinct values of it
c) you have other possibilities

More you can find at:

Sam’s Mastering DAX class:

Microsoft Documentation:

For Example - I will use Data Visualization Workout 1 data set :
(more about visualization of it you can check at:

)

Rating_Example.pbix (24.5 KB)

If you need further explanation please let us know.

Good luck.