Forum Discussion

ripstaur's avatar
ripstaur
Helper III
5 years ago
Solved

Filtering out duplicates

So, this ought to be easy, but one of the caveats in the online training is that filters are not something a newbie like me will understand first time through.  So here's the setup - I have some fac...
  • Icey's avatar
    5 years ago

    Hi ripstaur ,

     

    Create a measure like so:

    Measure =
    VAR t =
        SUMMARIZE (
            'Table',
            'Table'[Region],
            'Table'[County],
            "Total_", MAX ( 'Table'[County total cases] )
        )
    RETURN
        SUMX ( t, [Total_] )
    

     

    BTW, .pbix file attached.

     

     

    Best Regards,

    Icey

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.