Forum Discussion

Zain26's avatar
Zain26
Advocate II
8 years ago
Solved

How to remove duplicates in calculated column?

I want to remove some duplicates from a calculated column. I want to use this column in a measure in LookupValue() but I get an error "a table of multiple values was supplied where a single value was...
  • v-yulgu-msft's avatar
    v-yulgu-msft
    8 years ago

    Hi Zain26,

     

    Create measures like below:

    Max Count =
    CALCULATE (
        MAX ( 'TimeRange Table'[CountofTimeRange] ),
        ALLEXCEPT ( 'TimeRange Table', 'TimeRange Table'[USER] )
    )
    
    Peak Time Range =
    CALCULATE (
        LASTNONBLANK ( 'TimeRange Table'[TimeRange], 1 ),
        FILTER ( 'TimeRange Table', 'TimeRange Table'[CountofTimeRange] = [Max Count] )
    )

    Add field [USER] into Columns area of matrix, and add measure [Peak Time Range] into Values section.

     

    Best regards,
    Yuliana Gu