Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a table that I would like to permanently sort. Right now the table shows all employees in column A and the count of how many orders they have done in column B. I want to filter out everyone who has not completed an order and show anyone who has completed greater than zero. I have tried to use Count({<OrderStatus>{0}>}OrderStatus); however, it is giving me an error: '}' expected.
Correct syntax for set analysis would be:
Count({<OrderStatus={">0"}>}OrderStatus)