How to quote a quote with the CONCATENATE function in OOCalc
https://stackoverflow.com/questions/2145882
OTHER TIPS
Use char(34)
to get the quote character.
CONCATENATE(char(34); B2; char(34))
Identical to the above but without the function:
="""" & A1 & """"
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
- Set the cell value as double quotes -> "
- Concatenate that cell in the string, wherever you need double quotes. eg: E1 = " F1 = =concatenate("coffee",E1,"code")
Thank you
You can use single quotations marks within the double quotation marks and vice versa.
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow