Forum Discussion

Syndicate_Admin's avatar
Syndicate_Admin
Administrator
4 years ago
Solved

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 ...
  • AlexisOlson's avatar
    AlexisOlson
    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] ) )
    )