LibreOffice Calc: How to remove a character from multiple columns

libreoffice-calc

For some reason, when I import data from a certain unnamed source (toggl.com), some of the time columns have an apostrophe in them.

When I have this data loaded in Calc, is there a quick, easy way to remove these?

The columns look like:

'12:05:12
'05:05:05
'04:04:44

And I want:

12:05:12
05:05:05
04:04:44

I see the =REPLACE function, but I can't seem to get that to work. Maybe I don't understand the steps.

Best Answer

Just use =right(A1,8) and drag it down. Right will always give you the X rightmost characters of the string and given it's consistent in this string, it will be the simplest solution.

Related Question