Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

How to FILTER virtual table

Hi Team,
I need a caculated table with names of costumers, who purchased something in 2 monthes, from period
So i made an example table 
I need somehow FILTER that virtual table so that only costumers who have "AmountM" = 2 remain

Table 2 =
CALCULATETABLE(
SUMMARIZE(Orders,
Orders[Customer ID],
"AmountM", COUNT('Calendar'[MonthYear])),
DATESBETWEEN('Calendar'[Date],
"01.01.2015","01.09.2015"))


  • Anonymous's avatar
    Anonymous
    4 years ago

    filter(

        calculatetable(...),

        [AmountM] = 2

    )

1 Reply

  • Anonymous's avatar
    Anonymous
    Not applicable

    filter(

        calculatetable(...),

        [AmountM] = 2

    )