Sometimes you'll want to wrap a column of text with double quotes, for example before providing a list of strings to a program. Use `CHAR(34)` to generate double quotes in your formula. ``` =CHAR(34) & A1 & CHAR(34) ```