Let’s say I have a name (limited to the current sheet) dataX
for range $Sheet1.$B$2:$B$11226
And I have names O2=1436
named start
and O3=10260
named stop
.
How do I now use these names to compute - for example - the average of the range dataX
without the first start-1
values and without the values after the stop-th
(i.e. in this example, $Sheet1.$B$1438:$B$10262
).
Note: I could, of course, set the name dataX
to just $Sheet1.$B$1
and then use OFFSET(dataX,start,0):OFFSET(dataX,stop+1,0)
, that’s not the solution I’m looking for.