Forum Discussion
fbron
7 years agoFrequent Visitor
Count identical values within a column
I'd like to count the amount of identical values within a column and present the outcome within a new column.
"ITEM "IS THE COLUMN I AM USING, "COUNT" IS THE RESULT I NEED FROM DAX/MEASURE
Any suggestions?
Hi fbron , you could create the next calculated column:
num = CALCULATE(COUNTROWS('Count');FILTER('Count';'Count'[item]=EARLIER('Count'[item])))Best Regards,
Miguel
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
3 Replies
- fbronFrequent Visitor
Most likely I'm doing something wrong but this doesn't work:
Any suggestions?
- SNawalKishore1Regular Visitor