Hello,
I have an array formula that returns values based on a couple criteria, it references a couple columns in the active sheet and another sheet called "reference". The forumla works by itself, but as an array it does not fill down for some reason:
This formula Would go in column I1
=ArrayFormula(if(H:H<>"Campaign #",(iferror(Lookup($A:A,Reference!$G:G/(Reference!$B:B=$H:H),Reference!$C:C),"No Match")),"Mail Piece"))
Example Sheet 1:
Reference Sheet:
So what should happen is when I insert the formula into column I of sheet 1, it should fill down the rest of the columns with the array, but it doesn't fill down.
I am using this in google sheets.
I have an array formula that returns values based on a couple criteria, it references a couple columns in the active sheet and another sheet called "reference". The forumla works by itself, but as an array it does not fill down for some reason:
This formula Would go in column I1
=ArrayFormula(if(H:H<>"Campaign #",(iferror(Lookup($A:A,Reference!$G:G/(Reference!$B:B=$H:H),Reference!$C:C),"No Match")),"Mail Piece"))
Example Sheet 1:
A | B | C | D | E | F | G | H | I |
Date | Campaign | |||||||
May 15, 2020 | 1 |
Reference Sheet:
A | B | C | D | E | F | G |
NUMBER | Campaign | Product | Delivery Date | |||
1 | 1 | Screws | May 15, 2020 |
So what should happen is when I insert the formula into column I of sheet 1, it should fill down the rest of the columns with the array, but it doesn't fill down.
I am using this in google sheets.