Created
November 11, 2016 12:11
-
-
Save roalcantara/a470c0eb29405beb2a96f72442078e37 to your computer and use it in GitHub Desktop.
Google Spreadsheet Double Quotes Formula
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
First, why don't you just export your spreadsheet as csv? Google has that feature built-in. It's under the menu File > Download as > CSV | |
But, answering your question, it's pretty easy to wrap all values in doubles quotes. Let's say the desired values are on Sheet1 columns A to D. On Sheet2, cell A1, just place this formula: | |
=ArrayFormula(""""&Sheet1!A:D&"""") | |
The issue with the issue with the double quotes is that they're used as string delimiters, so to have them inside a string you have to type two consecutive. So, one " to open, two to have one "" and one " to close :) | |
source: http://stackoverflow.com/questions/3315636/how-to-enclose-every-cell-with-double-quotes-in-google-docs-spreadsheet |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment