From ChatGPT Several operations to Airtable specific Columns

Hello,

I would like to seek the community help for the following challenge that I’m facing:

1- I have a chatgpt output in x different operations (image below)

I’m quite new to make.com and the community but would really appreciate your help on this “issue”.

Thank you!

2- After generating those operations, I need to Update my airtable each operation in a specific column.

3- The issue is that by using Update Record, it only allows me to choose “result” and there’s no way to allocate a specific operation to a specific column since all I have is “result” (Image below)

Hi @Miguel_Lopes,

Welcome to the Make community!

You can only select bundles that precede the module you are working with. That means that if you use a router, you cannot use bundles that are created in another route. You could solve this with the ‘set variable’ + ‘get variables’ trick. Here, you use the set variable module at the end of each route, and use a get variables module at the start of your last router to get all variables.

But why do you not place the module’s in succession? It doesn’t seem you are using filters.

Cheers,
Henk

1 Like

Thank you for your support Henk!

I placed the module’s in succession as suggested.

Nevertheless I believe the issue is connection with something else. Basically, I have 12 operations as part of the last chatgpt module and when I add an update record module, I need to add each operation in a different column but as per the image it’s just allows me to store “Result” and not each individual operation.

Thanks a lot for your support Henk!

I suppose with each ‘operation’ you mean each individual ChatGPT module?

As you can see in your screenshot, you can access the Result of the ChatGPT module with module # 12:
Scherm­afbeelding 2024-09-06 om 13.54.25

Each module has a unique number. If you scroll down in the same window, you should be able to see the other ChatGPT modules and access the Result of each ChatGPT operation.

Also, there is no need to place a ‘Update a Record’ Airtable module after each ChatGPT module. You can place all ChatGPT modules in succession and then do one update to Airtable.

I hope I understood your trouble correctly, correct me otherwise.

Cheers,
Henk

1 Like

Thank you for one more tip! It’s my first attempt and I guess it will still be a big learning curve =)

Check this video, I believe it better explains what is the issue I’m facing. Basically that result on the last gpt module it has multiple operations (1 per each chapter I want to resume) and then I need to upload it to my airtable but I can only find the field “result” instead of the result of each operation.

Is it a bit more clear?

Thank you once again Henk!

Ah you are using an iterator to split an array in multiple bundles. The bundles are all processed in the next modules one by one. If you don’t include an aggregator, all next modules ill be processed for how many bundles there are.

You’ll need an aggregator of some kind: https://www.make.com/en/help/modules/aggregator#aggregator

This course on the academy talks about the iterators and aggregators: Introduction to Iterators and Array Aggregators

Cheers,
Henk

1 Like