1

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

FILTER has 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.

2

1 Answer 1

1
=FILTER(IMPORTRANGE("1gyAaxDzklUuhwBdLpMkb2jgrPmbJ9WxtdJ1JOO2d424","Responses!N1:N101"),
 ROW(A1:A101)=MAX(FILTER( ROW(A1:A101),NOT(
 ISBLANK(IMPORTRANGE("1gyAaxDzklUuhwBdLpMkb2jgrPmbJ9WxtdJ1JOO2d424","Responses!N1:N101"))))))

0

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.