Forum Discussion
Giada_Togliatti
5 years agoPost Patron
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...
- 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
amitchandak
5 years agoSuper User
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