Forum Discussion

Giada_Togliatti's avatar
Giada_Togliatti
Post Patron
5 years ago
Solved

Error in filter formula

Hi, I have sample data of a superstore and I want to filter orders which have quantity>5, I tried to do a formula like this Measure = FILTER(Orders; Orders[Quantity]>5) but I have this error:  T...
  • amitchandak's avatar
    5 years ago

    Giada_Togliatti , Create a measure like this. Use it in card visual or with order number/ID on other visuals

     

    calculate(countrows(Orders), FILTER(Orders; Orders[Quantity]>5))

     

    Filter return table not a value