Skip to main content
Solved

Updating airtable multi fields during integromat make module

  • February 12, 2024
  • 1 reply
  • 20 views

Forum|alt.badge.img+3

Integration with make.com + airtable

I want to automate posting on different social media channels based on information in an Airtable database. After each successful post, I want to update a status column in Airtable to reflect which social media platform the post is live on.

The issue I'm facing is that the status column keeps getting overwritten, so only the latest post's status is shown, instead of all the platforms the post is live on.

I've tried using this command:

{{merge(6.Live Status; add(emptyarray; "Live - FB"))}}

The command works when there's pre-existing data in the Airtable cell BEFORE the router. However, it fails to recognize the updated status created after the router for each post. It seems to only read the Airtable data from before the router was introduced.

Can anyone help? see attached screenshot for the scenario. Thanks

Best answer by TheTimeSavingCo

This works fine for me:


It successfully adds the "World" to the multiple select field, so that it goes from this:


To this:

So maybe you could try just using:

add(6. Live Status; "Live - FB")

 

1 reply

TheTimeSavingCo
Forum|alt.badge.img+31
  • Brainy
  • 6459 replies
  • Answer
  • February 12, 2024

This works fine for me:


It successfully adds the "World" to the multiple select field, so that it goes from this:


To this:

So maybe you could try just using:

add(6. Live Status; "Live - FB")