Announcements
This site is in read only until July 22 as we migrate to a new platform; refer to this community post for more details.

Need Help Creating Workflow Template

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 Solved
0 8 721
1 ACCEPTED SOLUTION

Phil
Former Googler

Try this:

<<Start: FILTER(Orders, [Status] = “AVAILABLE”)>>
Pickup: <<[Pickup]>>
Delivery: <<[Delivery]>>
Farm: <<[Farm]>>
Customer: <<[Customer]>>
Rate: <<[Rate]>>
<< End >>

View solution in original post

8 REPLIES 8
Top Labels in this Space