When importing an xlsx file into a Google sheet, I end up with a formula parse error because the cells of one column contain wrong date formulae like ==DATE(2021,3,12)
.
Obviously the problem is that there is one "=" to many.
I cannot go ahead and manually fix the error in every cell, so I would need some other formula to get rid of the of the additional "=" at the beginning of the cell content. I thought about using something like =RIGHT()
, but this again results in an error, since the referenced cell already contains an error and cannot be interpreted as string.
In the end I would like to import the column containing the (wrongly formatted) dates into another spreadsheet via the =IMPORTRANGE()
formula and at the same time get rid of the additional "=" at the beginning of the cell content.
If possible I would like to do this without the help of a script, but if it's only possible with one, then I am grateful for ideas here as well. Any help is greatly appreciated!