Forum Discussion

Bali21's avatar
Bali21
Frequent Visitor
3 years ago
Solved

Table become blank after adding filter

Hello All,   Need your help on the below issue.   I have created one measure - "Multi Loc = CALCULATE(DISTINCTCOUNT(Sheet1[Location](GROUPBY(Sheet1,Sheet1[Location],Sheet1[ID])))" BUT when i drag...
  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi Bali21 ,

    You can update the formula of measure [Multi Loc] as below, please find the details in the attachment.

    Multi Loc =
    CALCULATE (
        DISTINCTCOUNT ( 'Sheet1'[Location] ),
        ALLEXCEPT ( 'Sheet1', 'Sheet1'[ID], 'Sheet1'[Name] )
    )

    or

    Multi Loc = 
    VAR _tab =
        SUMMARIZE (
            'Sheet1',
            'Sheet1'[ID],
            'Sheet1'[Name],
            "@count",
                CALCULATE (
                    DISTINCTCOUNT ( 'Sheet1'[Location] ),
                    FILTER (
                        ALL ( 'Sheet1' ),
                        'Sheet1'[ID] = EARLIER ( 'Sheet1'[ID] )
                            && 'Sheet1'[Name] = EARLIER ( 'Sheet1'[Name] )
                    )
                )
        )
    RETURN
        SUMX ( _tab, [@count] )

    Best Regards