Forum Discussion
Syndicate_Admin
4 years agoAdministrator
Working 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
4 years agoSuper User
Are you working in the query editor or with DAX? What is the end result you want?