Reputation: 39085
In OOCalc
I want to use the CONCATENATE
function to add quotes to each string in column A.
So in cell B1 I want to do:
=CONCATENATE("\"",A1,"\"")
OOCalc
does not like this, or without the escaping backslash.
Does anyone know how to do this, or what an alternative method might be?
Upvotes: 119
Views: 150925
Reputation: 548
Use char(34)
to get the quote character.
CONCATENATE(char(34); B2; char(34))
Upvotes: 44
Reputation: 842
You can do it in 2 ways,
By using =CHAR(34) in the places of doible quotes eg: =CONCATENATE("coffee",CHAR(34),"code")
By concatenating cell values
Steps
Thank you
Upvotes: 3
Reputation: 820
You can use single quotations marks within the double quotation marks and vice versa.
Upvotes: 0
Reputation: 3584
Identical to the above but without the function:
="""" & A1 & """"
Upvotes: 16
Reputation: 6671
This works for me:
=CONCATENATE("""",A1,"""")
Repeating the quotes escapes them (as it does in Visual Basic, I believe), so """"
reads as: 'one quote to start a string, one escaped quote (""), then one quote to finish the string'.
Upvotes: 191