Reputation: 31
I want to reference a part of an array or a range that is not a cell range reference. Apparently OFFSET() only works with cell references. What function do I need to reference a range of a "created" range?
Upvotes: 1
Views: 28
Reputation: 1
in your case you need:
=QUERY(B6:D9, "select D where C = 'MAN' limit 3")
but offset can be done even in query:
=QUERY(B6:D9, "offset 2")
Upvotes: 1