Forum Discussion
chahine
Feb 24, 2021Iron Contributor
using sequence function for row numbers in offset
Hello guys I have one issue, when am using the offset formula, now as you now offset needs row parameter, when i use sequence function for row parameter, i get an error, why? am not getting what ...
- Feb 26, 2021
OFFSET() doesn't work with array, you may check on more simple variant =OFFSET(A1, {1;2} , 0).
Formula could be
=$A$2:INDEX($A$2:A1000,COUNTA(A:A)-1)
SergeiBaklan
Feb 26, 2021Diamond Contributor
OFFSET() doesn't work with array, you may check on more simple variant =OFFSET(A1, {1;2} , 0).
Formula could be
=$A$2:INDEX($A$2:A1000,COUNTA(A:A)-1)
- chahineMar 02, 2021Iron ContributorThank you