Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

How to create Measure with filter?

I have Table with column SalesDay, ProductName, CustomerName and CustomerCity. I wanter to have one ToyotaLondonSalesCount calculated for "Toyota" and "London". I could succesfully SalesCount with Co...
  • v-xuding-msft's avatar
    v-xuding-msft
    6 years ago

    Hi Anonymous ,

    A1: Can you please share some screenshots? I can't understand what you mean. Please share the steps what you did and the results what you want.

     

    A2: Please try the formula below:

    Filter sales =
    CALCULATE (
        COUNTROWS ( 'Table' ),
        FILTER (
            'Table',
            'Table'[CustomerName] = "Toyota"
                && OR ( 'Table'[CustomerCity] = "London", 'Table'[CustomerCity] = "Liverpool" )
        )
    )
    

    Best Regards,

    Xue Ding

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