# arrayIntersection

**URL:** https://community.make.com/t/arrayintersection/107202
**Category:** Questions
**Tags:** arrays
**Created:** [April 9, 2026, 11:18am UTC](https://community.make.com/t/arrayintersection/107202 "2026-04-09T11:18:29Z")
**Posts on this page:** 12
**Page:** 1

<div class="post-metadata">

### Author: ![Lucas81](https://avatars.discourse-cdn.com/v4/letter/l/bc8723/32.png) [@Lucas81](https://community.make.com/u/Lucas81)
#### Post date: [April 9, 2026, 11:18am UTC](https://community.make.com/t/arrayintersection/107202/1 "2026-04-09T11:18:29Z")

</div>

In the ui I see this function available, which does exaclty what I am looking for at the moment. However I cannot find any documentation about this function.

Whats up with that? Is it safe to use this function?

---

<div class="post-metadata">

### Author: ![Stoyan\_Vatov](https://avatars.discourse-cdn.com/v4/letter/s/5daacb/32.png) [@Stoyan\_Vatov](https://community.make.com/u/Stoyan_Vatov)
#### Post date: [April 9, 2026, 11:35am UTC](https://community.make.com/t/arrayintersection/107202/3 "2026-04-09T11:35:19Z")

</div>

Hey there,

you give it two arrays and gives one array as output with the elements contained in both of them.

---

<div class="post-metadata">

### Author: ![Lucas81](https://avatars.discourse-cdn.com/v4/letter/l/bc8723/32.png) [@Lucas81](https://community.make.com/u/Lucas81)
#### Post date: [April 9, 2026, 11:51am UTC](https://community.make.com/t/arrayintersection/107202/4 "2026-04-09T11:51:54Z")

</div>

Yes I understand that, but why is there no reference to this function anywhere? Even the help tooltip in Make gives a non existing reference:

 ![image](https://europe1.discourse-cdn.com/flex013/uploads/make/original/3X/e/e/eead9606d17462ad1c791c405d9639250df48b52.png)

---

<div class="post-metadata">

### Author: ![Stoyan\_Vatov](https://avatars.discourse-cdn.com/v4/letter/s/5daacb/32.png) [@Stoyan\_Vatov](https://community.make.com/u/Stoyan_Vatov)
#### Post date: [April 9, 2026, 11:54am UTC](https://community.make.com/t/arrayintersection/107202/5 "2026-04-09T11:54:07Z")

</div>

I’m not sure it was supposed to be added yet. Hence the lack of documentation. Oooor they pushed the functions first and the documentation is lagging behind.

There is arrayDiff() bellow as well, which is also new and lacks documentaion.

---

<div class="post-metadata">

### Author: ![Lucas81](https://avatars.discourse-cdn.com/v4/letter/l/bc8723/32.png) [@Lucas81](https://community.make.com/u/Lucas81)
#### Post date: [April 9, 2026, 11:59am UTC](https://community.make.com/t/arrayintersection/107202/6 "2026-04-09T11:59:19Z")

</div>

Yes, I am curious if I can safely use the function, without the risk it is getting removed or something

---

<div class="post-metadata">

### Author: ![Stoyan\_Vatov](https://avatars.discourse-cdn.com/v4/letter/s/5daacb/32.png) [@Stoyan\_Vatov](https://community.make.com/u/Stoyan_Vatov)
#### Post date: [April 9, 2026, 12:08pm UTC](https://community.make.com/t/arrayintersection/107202/7 "2026-04-09T12:08:42Z")

</div>

Oh yeah sorry 😃 with Make’s track record, I doubt they will add something this useful and then remove it instantly.

Most likely the documentation isn’t synced yet, but the function should be safe to use.

---

<div class="post-metadata">

### Author: ![Lucas81](https://avatars.discourse-cdn.com/v4/letter/l/bc8723/32.png) [@Lucas81](https://community.make.com/u/Lucas81)
#### Post date: [April 9, 2026, 12:56pm UTC](https://community.make.com/t/arrayintersection/107202/8 "2026-04-09T12:56:24Z")

</div>

Ok let’s see, just to add for future reference, I am using this function to combine the result of 2 map()’s so I can filter an array on two key values:

```auto
    {
                "id": "rec009HRWsXUxo4dO",
                "StockID": 713,
                "ItemID": "368255b6-5885-4988-b338-4dc64476191a",
                "createdTime": "2026-04-09T07:27:39.000Z",
                " __IMTINDEX__": 1,
                " __IMTLENGTH__": 1260,
                "WarehouseID": "9aa277a0-0bd9-4814-b686-cdabe19c19bf"
            }

```

So I want the value for `id` where ItemID and WarehouseID have some known value.

This gives me an array of id’s where ItemID = xxx:

> {{map(54.array; “id”; “ItemID”; xxx)}}

This gives me an array of id’s where WarehouseID = yyy:

> {{map(54.array; “id”; “WarehouseID”; yyy)}}

The combined result gives me the unique id value which I can use in the upsert Airtable module:

> {{first(arrayIntersection(map(54.array; “id”; “ItemID”; xxx); map(54.array; “id”; “WarehouseID.1”; yyy)))}}

I can use this statement in the Upsert Airtable module directly and avoid expensive Set variable modules inside an iteration.

---

<div class="post-metadata">

### Author: ![vendy](https://dub1.discourse-cdn.com/flex013/user_avatar/community.make.com/vendy/32/12635_2.png) [@vendy](https://community.make.com/u/vendy)
#### Post date: [April 9, 2026, 1:04pm UTC](https://community.make.com/t/arrayintersection/107202/9 "2026-04-09T13:04:35Z")

</div>

Hey there @Lucas81 👋

Great eye! What you saw was an early-access preview of some features currently in our development pipeline.  
We briefly enabled them in your zone for final staging, but we’ve tucked them back away while the team puts on the finishing touches.

I’ll make sure you’re among the first to know when they are officially ready for prime time!

---

<div class="post-metadata">

### Author: ![Lucas81](https://avatars.discourse-cdn.com/v4/letter/l/bc8723/32.png) [@Lucas81](https://community.make.com/u/Lucas81)
#### Post date: [April 9, 2026, 1:38pm UTC](https://community.make.com/t/arrayintersection/107202/10 "2026-04-09T13:38:47Z")

</div>

Will this function remain available? I hape a scenario depending on it right now 😄

---

<div class="post-metadata">

### Author: ![vendy](https://dub1.discourse-cdn.com/flex013/user_avatar/community.make.com/vendy/32/12635_2.png) [@vendy](https://community.make.com/u/vendy)
#### Post date: [April 10, 2026, 7:08am UTC](https://community.make.com/t/arrayintersection/107202/11 "2026-04-10T07:08:06Z")

</div>

Hey @Lucas81,

As I mentioned, the function was disabled, but once we enable it, I’ll let you know so you can start building with it!

---

<div class="post-metadata">

### Author: ![Lucas81](https://avatars.discourse-cdn.com/v4/letter/l/bc8723/32.png) [@Lucas81](https://community.make.com/u/Lucas81)
#### Post date: [April 10, 2026, 7:26am UTC](https://community.make.com/t/arrayintersection/107202/12 "2026-04-10T07:26:07Z")

</div>

hmm ok, any idea’s on how to achieve the same result with minimal operations?

---

<div class="post-metadata">

### Author: ![Make\_Bot](https://dub1.discourse-cdn.com/flex013/user_avatar/community.make.com/make_bot/32/14661_2.png) [@Make\_Bot](https://community.make.com/u/Make_Bot)
#### Post date: [April 23, 2026, 1:18pm UTC](https://community.make.com/t/arrayintersection/107202/13 "2026-04-23T13:18:13Z")

</div>


