I found this question asked in other places, but I can't seem to get my formula correct...
=FILTER(ShortInventory!N:N , ROW(ShortInventory!N:N) =MAX( FILTER(
ROW(ShortInventory!N:N) , NOT(ISBLANK(ShortInventory!N:N)))))
This works, pulling data from a secondary tab on the existing spreadsheet. I would like to pull this directly from the external spreadsheet.
=FILTER(IMPORTRANGE("SOURCE","Responses!N:N") ,
ROW(IMPORTRANGE("SOURCE","Responses!N:N")) =MAX( FILTER(
ROW(IMPORTRANGE("SOURCE","Responses!N:N") ,
NOT(ISBLANK(IMPORTRANGE("SOURCE","Responses!N:N")))))))
I've tried variations of this and get the #N/A
FILTERhas mismatched range sizes. Expected row count: 122. column count: 1. Actual row count: 1, column count: 1.
I have no idea how to make this work.
