0

I have an excel sheet with two columns. One of the columns is the time column. It has over 10000 rows. The format of the time is: '2018-07-18 05:00:00+0530'. The '+0530' is present in each row. I want to remove that from each row of the sheet. How should I do that? ​

Ayush Sinha
  • 41
  • 1
  • 7

1 Answers1

0

With data in column C, in D1 enter:

=LEFT(C1,LEN(C1)-5)

and copy downward.

If you attempt to edit the data "in-place", you may end up also re-formatting it.

enter image description here

(this assumes the single quotes are in your question, but not in your data.)

Gary's Student
  • 95,722
  • 10
  • 59
  • 99