I am wondering if there is an issue with my formula because its not filling the entire column like an array should.
Currently my formula is working perfectly with B2, but its not working for the entire range B2:B.
Here is my formula:
=ARRAYFORMULA(QUERY({
{IMPORTRANGE("URL TO PRIVATE SHEET","$L2:$O")}
},"select Col4 WHERE Col1 CONTAINS " & $A2:A))
The IMPORTRANGE sheet looks like... https://docs.google.com/spreadsheets/d/1GFnkuE3Dx-rTuvEV6wj1mCEq3P6cOxbzYco4aFVNw-I/edit?usp=sharing
| L |M|N| O |
| 000001 |*|*|[email protected] |
| 000002 |*|*|[email protected] |
| 000003 |*|*|[email protected] |
The ARRAYFORMULA is in B2 https://docs.google.com/spreadsheets/d/1JaWUWS3xKOwSX9y7uWUqEU5_Knp8nRgnhlVa1kRNlTo/edit?usp=sharing
| A | B |
| 000003 | [email protected] | <- Contains the formula above and works.
| 000001 | * | <- No data: should say "[email protected]"
| 000002 | * | <- No data: "[email protected]"
Is this a limitation in Google Sheets? Thanks!