Forum Discussion
Syndicate_Admin
Administrator
4 years agoWorking with duplicate values
Good afternoon friends, I'm pretty new working with power bi. I'm doing a report where I need to work with duplicate values. In fact, the purpose of this report is to know those duplicate values for ...
- 4 years ago
Yeah, you could try a calculated column instead of a measure.
Cantidad = COUNTROWS ( FILTER ( 'OS Pending', 'OS Pending'[NISRAD] = EARLIER ( 'OS Pending'[NISRAD] ) ) )
AlexisOlson
Super User
4 years agoAre you working in the query editor or with DAX? What is the end result you want?