When I use LEFT(A1) I´ll get the first character on de the left of A1 cell. I would like to have the same simple response when if I use MID(A1,3) to get the only character on position 3 of A1 cell, instead of using MID(A1,3,1) as I have to do now. The formulas that pick several individual characters from a cell would become simpler. Thanks.
MID() is *specified* to take 3 mandatory parameters, see ODFF v1.3 6.20.15 MID https://docs.oasis-open.org/office/OpenDocument/v1.3/cs02/part4-formula/OpenDocument-v1.3-cs02-part4-formula.html#MID That third parameter is also expected by other spreadsheet implementations so would have to be written anyway. It's a rather arbitrary use case that only one character would be obtained by MID() that would justify a default handling and automatically adding a third argument of 1.