I’ve got a gSheet that contains a database of orders. In this table I have the column [Status]. Whenever [Status] contains the value “AVAILABLE”, i want to bring all of the orders that are AVAILABLE and contain only the columns [Pickup], [Delivery], [Farm], [Customer], and [Rate] to the gDoc so that I can attach it to a Workflow.
Basically I’m wanting my gDoc template to contain a 5 column table, showing all AVAILABLE orders in my system.
This is what I have so far…
<<If: [Status] = “AVAILABLE”>>
Pickup: <<LIST([Pickup])>>
<>
Solved! Go to Solution.
Try this:
<<Start: FILTER(Orders, [Status] = “AVAILABLE”)>>
Pickup: <<[Pickup]>>
Delivery: <<[Delivery]>>
Farm: <<[Farm]>>
Customer: <<[Customer]>>
Rate: <<[Rate]>>
<< End >>
User | Count |
---|---|
35 | |
9 | |
3 | |
3 | |
2 |