Google Sheets – How to Paste Numbers as Strings

formattinggoogle sheets

I have one spreadsheet in Google Sheets with data like:

0012
0234
0065

I want to paste this in another Google Sheets but when I use ctrl+c ctrl+v the data is formatted like numbers:

12
234
65

I want conserve the string format.

With right-click copy-paste I can't copy between spreadsheets.

Tested in Firefox and Chromium.

Best Answer

Place a single quote (') in front of the zeros before you copy the cells.

If you need to apply this to lots of cells, set the contents of one cell to ' and use CONCAT to populate a new column with the ' and the cell contents.

If A1 is ' and the values you want to copy start in B1:

Set C1 to =CONCAT($A$1, $B1) and fill the formula down.