[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-12-02 UTC."],[[["\u003cp\u003e\u003ccode\u003eTextToColumnsDelimiter\u003c/code\u003e is used to define the type of delimiter for splitting text within a spreadsheet column into multiple columns.\u003c/p\u003e\n"],["\u003cp\u003eDelimiter options include comma (\u003ccode\u003e,\u003c/code\u003e), semicolon (\u003ccode\u003e;\u003c/code\u003e), period (\u003ccode\u003e.\u003c/code\u003e), and space (\u003ccode\u003e \u003c/code\u003e).\u003c/p\u003e\n"],["\u003cp\u003eTo use a delimiter, call it using \u003ccode\u003eSpreadsheetApp.TextToColumnsDelimiter\u003c/code\u003e followed by the specific delimiter property, for example, \u003ccode\u003eSpreadsheetApp.TextToColumnsDelimiter.COMMA\u003c/code\u003e.\u003c/p\u003e\n"]]],[],null,["TextToColumnsDelimiter\n\nAn enumeration of the types of preset delimiters that can split a column of text into multiple\ncolumns.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nSpreadsheetApp.TextToColumnsDelimiter.COMMA`. \n\nProperties\n\n| Property | Type | Description |\n|-------------|--------|------------------|\n| `COMMA` | `Enum` | `\",\"` delimiter. |\n| `SEMICOLON` | `Enum` | `\";\"` delimiter. |\n| `PERIOD` | `Enum` | `\".\"` delimiter. |\n| `SPACE` | `Enum` | `\" \"` delimiter. |"]]