Automations: Item linking

Hi,

Currently we are having separate Monday boards for several of our web products.

We are using the status updates to easily show where in the pipeline each task is sitting, like “More information needed”, “Ready for publishing”, “Live”, among others.

I’d like to create a “super-board” to quickly summarize how many tasks we have in each of these categories through groups.

The item creation isn’t a problem. I have been able to do this through the “When status changes to something, create an item in another board and link them in the selected board” automation.

However, is there a way of creating a constant link between items created in the “super-board”? One issue I am having is that when change a status to “Ready for publishing” it creates an item in the “super-board”. However, when I am changing the status to “Live”, it creates a new item as well.

Is it possible to set up an automation that would simply update the already created item in the “super-board” rather than creating a new one?

There might be a better way to approach this. But, given the structure that you are suggesting, with the “super-board”, the only way that I can think of to make this work currently would be with a custom monday app or a third party integration.

For example, if you used the automation below to create the item on the “super-board”, you could then add an integration to call a Integromat scenario using a webhook when that status changes to update the status on the “super-board”. If you’re okay with the concept, it would actually be pretty easy.
image

I actually think this might be the way to go, @JCorrell, thank you so much!

I’ll look into the webhook integration.

I have tried to set everything up like you sketched it out now, @JCorrell.

The item creation are done through a Monday automation, however, I can’t seem to get the updates to work through Integromat.

This is what I have tried:

  1. Set up a “Watch Board’s Item” with “New and Updated Items”, Board ID: the low-level board, and Output Column Values: “Status”
  2. Set up a “Get an Item’s Column Value” with Board ID: the high-level board, Item ID (map): “ID”, and Column ID: “Status”

Any idea what I’m doing wrong?

@stianolini,

I’d have to look at the details to see if I could figure it out. Your concept seems sound.

But, here’s how I would do it:
In Integromat, create a scenario with these modules:

  1. Webhook.
  2. read the low-board to get the item link to the high-level board.
  3. if needed, read high-level board item.
  4. update high-level board.

Then connect to the webook by adding this automation to the low-level board.
image

Also, although I have found webhook integrations to be fairly reliable, depending on the details of your use case, you may want to have a separate process that goes through the entire structure and verifies / corrects any discrepancies on a regular basis (weekly/monthly/?).

1 Like

I know this is an old thread, but I came across it this week and found it quite useful for setting up an integromat sequence to update a value on a linked item when the other linked item changed.
here is the sequence:

  1. webhook - this gives me the linkedItemId
  2. get the rest of the updated item based on pulseID coming in from webhook
  3. iterate through the linked ids array (since in our case its possible to have more than 1 linked item
  4. for each linkedID update the status of the linkeditem to be same as status of the pulseId.

here is a screenshot. Hope that helps someone else in the future

1 Like