Hi Haley. If I have understood you correctly, setting a certain status in the dealflow table will trigger the creation of a record in the task flow table and reset the status of that record in the dealflow table to something new? Does your automation look anything like the first screen shot below?

The trigger is primarily focused on the status of dealflow records (and any other fields you might not want to be empty or something). The first action creates a new record in your task flow table and sets fields appropriately, including task flow status. Then, the update record action sets the status of the triggering record in dealflow (select the record id from the step 1 record).

The one thing I’m not sure if you’ve left out or not is a link from the task flow table to the dealflow table. Did you want to “lookup” the dealflow status in the task flow table and possibly filter on it?
Hi Haley. If I have understood you correctly, setting a certain status in the dealflow table will trigger the creation of a record in the task flow table and reset the status of that record in the dealflow table to something new? Does your automation look anything like the first screen shot below?

The trigger is primarily focused on the status of dealflow records (and any other fields you might not want to be empty or something). The first action creates a new record in your task flow table and sets fields appropriately, including task flow status. Then, the update record action sets the status of the triggering record in dealflow (select the record id from the step 1 record).

The one thing I’m not sure if you’ve left out or not is a link from the task flow table to the dealflow table. Did you want to “lookup” the dealflow status in the task flow table and possibly filter on it?
Thank you!! This was very helpful as I was missing the update record action, which is so obvious now you’ve said! However, I’ve now put that in place, testing was successful but my deal flow status still does not update when it is changed in the task flow table. I have it set up like this…

If I did want to look up deal flow status from the task flow table, how would I go about setting that up please?
Thank you!! This was very helpful as I was missing the update record action, which is so obvious now you’ve said! However, I’ve now put that in place, testing was successful but my deal flow status still does not update when it is changed in the task flow table. I have it set up like this…

If I did want to look up deal flow status from the task flow table, how would I go about setting that up please?
Hi,Haley
How about setting up a linked table in Automation and then Lookup() the status of the linked table?
Thank you!! This was very helpful as I was missing the update record action, which is so obvious now you’ve said! However, I’ve now put that in place, testing was successful but my deal flow status still does not update when it is changed in the task flow table. I have it set up like this…

If I did want to look up deal flow status from the task flow table, how would I go about setting that up please?
Are you saying that, after the automation runs, you want to be able to control deal flow status from the task flow table? Changing either changes both?
If you just want to lookup deal flow status in the task flow table, you need a link field between them. Create a new link field in the task flow table that connects to the deal flow table. Also create a lookup field to deal flow status. In your automation (create record), you can populate the link field with the record id from step 1.
Hope this helps.
Are you saying that, after the automation runs, you want to be able to control deal flow status from the task flow table? Changing either changes both?
If you just want to lookup deal flow status in the task flow table, you need a link field between them. Create a new link field in the task flow table that connects to the deal flow table. Also create a lookup field to deal flow status. In your automation (create record), you can populate the link field with the record id from step 1.
Hope this helps.
That’s exactly what I want to be able to do! Changing the status in either table changes both…Thank you for helping me on this. I feel like its the most obvious thing I just can’t get to work
Hi,Haley
How about setting up a linked table in Automation and then Lookup() the status of the linked table?
Thank you, I shall try this too!!