I want to delete a set of characters which are behind a backslash in LibreOffice Calc. For example:
My/Name
Is/Jeff
where I would like to delete My
and Is
such that only /Name
and /Jeff
remain.
Does Libre's inbuilt functionality allow something like this or will I need to write some sort of script?
Use this formula:
=RIGHT(A1, LEN(A1) - FIND("/", A1))
Breakdown:
In other words, count all the characters and subtract the position of the slash. That's how many characters we grab starting from the right-hand side.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With