How to display Count summary?
I'm making an app that tracks orders the company I work for orders and makes sure they get to us efficiently.
I have three columns: Vendor, Forwarder (they are currently Enum) and Status which includes: Ordered, Warehouse, In Transit, In SVG and Received. (automatically calculated)
I want to create a view that displays:
You will need to make use of the Group By config under the list view you chose.
This is the easiest/fastest way IMO:
IF(
[Status]="Received",
"Inactive",
"Active"
)โ
Report back if it fits your need
It came close to what i wanted but. I dont really want to see inactive count
I also want the enum values from vendor and forwarder to be seen.
And I want them all displayed in the same place. As a list. Like the picture below
You can't mix entities. Vendor is one thing, Forwarder is another, etc
User | Count |
---|---|
15 | |
14 | |
8 | |
7 | |
4 |