What is your goal?
Hey everyone. Here’s my goal for this scenario:
- Gsheets Watch New Rows module: Pull from new rows in google sheets, one of the columns which lists the relevant employees to a project
- Set multiple variables: separates the names from the column (which is in the format “a, b, c” and creates individual objects “a”, “b”, “c”
- Iterator which uses the individual objects as keys to access info from the data store
- Data store which houses all of the employee information (slack id, gmail, etc)
Since it’s being done with an iterator, I want a way to compile ALL of the relevant slack ids in one variable, all of the relevant gmails in one variable, etc. I’ve tried combinations of array aggrators and text aggragators and things keep getting messier and messier.
What is the problem?
My scenario runs successfully and the data store creates the correct amount of outputs according to the number of employees. Where I’m stuck is compiling those outputs into re-usable variables.
Here’s the bundle content from the data store:
[
{
"employees": [
{
"full_name": "Jane Doe",
"role": "ID",
"slack_user_id": "XXYYZZ",
"gmail_address": "xxyyzz@company.com",
"teamwork_id": "######"
}
]
}
]
What have you tried so far?
I have tried using array aggregators and set variables to try and compile all the gmail addresses or slack ids into a string but am heading into some errors of it still outputting the number of bundles as the number of employees. I’m sure there’s a very simple fix for what I’m missing. Still a beginner so would really appreciate guidance with this! Thank you again!








