I think that this is not exactly what do you want, but maybe it can help you or others.
It is all about substring
(in Calc
called [MID][1]
function):
First: Choose your cell (for example with "abc-23
" content).
Secondly: Enter the start length ("british
" --> start length 4 = tish
).
After that: To print all remaining text, you can use the [LEN][2]
function (known as length) with your cell ("abc-23
") in parameter.
Code now looks like this:
D15="abc-23"
=MID(D15; 5; LEN(D15))
And the output is: 23
When you edit numbers (in this example 23), no problem. However, if you change anything before (text "abc-
"), the algorithm collapses because the start length is defined to "5".