Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
Hello.. I have been searching all day for an answer to my dilemma. I wanted to get the count of how many times the value in a column appears in the column. I have found lots of solutions involving COUNTROW(FILTER formula that also involves EARLIER function. I am amazed that it has worked for a lot of the users who needed that solution. But for some reason, it does not work for me. The resulting value squares the correct count.
To illustrate, for example I have below data. Table name is "Data". I want column B to return the count of occurrence of the ID in column A:
So I made this formula in Power BI Desktop via a calculated column. As you can see, the result is squaring the actual count:
I hope someone can help me with this. Any possible reason why this is happening? And any solution for this?
Thanks in advance.
Solved! Go to Solution.
It seems the implicit aggregation for the value was left on Sum.
Here are two approaches to address the issue with a sample file.
Regards
It seems the implicit aggregation for the value was left on Sum.
Here are two approaches to address the issue with a sample file.
Regards
@Anonymous , Create a measure
countrows(filter(allselected(Table), Table[ID] =max(Table[ID]))
I think simple measure
countrows(Table)
should also work
User | Count |
---|---|
89 | |
88 | |
85 | |
80 | |
49 |
User | Count |
---|---|
150 | |
142 | |
112 | |
73 | |
55 |