function: (offset) questionable notation - is it really that way?

hi,

i just notet that ‘OFFSET’ has arguments (reference; rows; columns; height; width), that is something one can! work with, but it’s not ‘intuitive’,

the notation for the name of a cell is: ‘column first’,

a simple minded user would expect the arguments in the same order, but it’s ‘rows first’,

thus to check the functioning you can’t do simple vector addition as we learned in school, but you have to ‘transponse’ the offset vector first …

and plenty simple minded user will be trapped by writing wrong formulae … :frowning:

imho there no chance to change this as it would break existing sheets, and most likely it’s inherited from OO or ‘excel compatibility’, but i have two suggestions for former enhancements:

  • if there is ever any change: leave rows/columns as is, but change height/width to width/height, that would even more train users,

  • in naming of functions change ‘read’ to ‘write’ and vice versa, and ‘store’ to ‘print’ and vv, it reduces the amount of people which’ll mess up your code,

[/humor off]

i have written this to make more users aware of its peculiarities and to help them solve problems from such cases more quickly

reg.

b.

[/ humor off]

Unfortunately, you are completely wrong with your concerns here.

You can submit suggestions for improvement on Bugzilla.

I would like to add that there are resons of the historical and of the pragmatrical class and also traditions in mathematics making the way it’s done intuitive for many users.
Histrorical: The much clearer RC notation of references in spreadsheets that once was a standard, unfortunately discredited by its unhandy way to write relative references.
Mathematical: Element indices for matrices are always (?) in RC order.
Pragmatical: A change after decades of practice “as is” is not feasible. The ADDRESS() function uses “row first”, too. So does the INDEX() function (Silly misleasing name! Also not changeable?).

you are right, i already admittet that a change is nearly impossible, as other functions work the same it’s a bigger problem on one hand, but easier to remember that there is! a problem on the other,

from math i’m used to (x,y) or (x,y,z) notations for functions, in that order, x horizontal, y vertikal, z orthogonal against sheet plane, thus columns first could be intuitive for mathematicians and people who had been to school … i think it would be difficult to investigate who invented the different behaviour for spreadsheets and why … i’ll try to learn to live with it …

@Lupp: for INDEX() - GETBYINDEX() or GETFROMRANGEBYINDEX() would have been a more intuitive name?

my question wasn’t a proposal to change anything, just a question if i’m right, and a ‘mine marker’ for others …