Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hi,
I have a column with with a text. Some of the text is duplicate which I would like to count (I wanna see how ofter it appears)
I tried following Dax Code, but it doesnt work because it cant compare between text and integer:
AA = COUNTROWS(
FILTER( DISTINCT( TABLE[Text]);
Tabe[Text] >=2
)
)
Does someone know how I could found duplicate text rows?
best regards
Solved! Go to Solution.
Hi @yellow_days,
You can create a new column using DAX, with the number of occurrences of the texts in the column, using this formula:
Count_occurence = COUNTX ( FILTER ( Table; EARLIER ( Table[Text] ) = Table[Text] ); Table[Text] )
Regards.
Hi,
Drag the text to the row labels of a Table visual and then use this measure
=COUNTROWS(Data)
Hope this helps.
Hi @yellow_days,
You can create a new column using DAX, with the number of occurrences of the texts in the column, using this formula:
Count_occurence = COUNTX ( FILTER ( Table; EARLIER ( Table[Text] ) = Table[Text] ); Table[Text] )
Regards.
Thanks alot!
it works, but without "Earlier()"
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 37 | |
| 35 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 74 | |
| 69 | |
| 39 | |
| 35 | |
| 23 |