I'm working with the following Google Sheet.
In the Filter Sheet I used the following FILTER() function to retrieve some data from the Data Sheet.
FILTER({Data!B12:H}, Data!B12:B<>"")
Using the above function I'd like to add a column to the end of the retrieved data containing a value (Lorem Ipsum) in cell A1 of the Data Sheet.
I have tried using the following filter function
FILTER({Data!B12:H,"" &INDEX(Data!A1)}, Data!B12:B<>"")
which yields the error
Function ARRAY_ROW parameter 2 has mismatched row size. Expected: 27. Actual: 1.
Please Advise
