How to display " (double quote) as a character in a cell

Asked 1 years ago, Updated 1 years ago, 104 views

"First, if you type ""Taro Yamada"" in A1 with the cell you want to refer to as A1
" = "My name is ""&A1&""
"Then, the cell says ""My name is Taro Yamada"", but
" Attempting to display "name": "Taro Yamada",
"=""name":"&A1&""," will naturally result in an error.

How do I print the string "name": "Yamada Taro", to the cell?

Note:
"Enter ""Taro Yamada"" in the A1 cell
" "I would like to refer to the contents written in the A1 cell and display ""name"": ""Taro Yamada"" on the B1 cell."
"In other words, if the contents written on the A1 cell are changed to ""Yuki Sato"", the B1 cell is changed to ""name"": ""Yuki Sato""."
Thank you for your cooperation.

google-spreadsheet

2022-09-30 17:28

2 Answers

="""name"":"""&A1&"","

The reference material below is Excel, but I could do the same with Google spreadsheet.

Excel: Enter "(double quote)" as a character in the expression


2022-09-30 17:28

In google-spreadsheet, write two double quotation marks (") in a string.
If hello "world",

like ="hello""world""

So I'm going to write the following.

="""name"":""&A1&"""

Additional information

It seems to be a comma at the end, so correct it

="""name"":"""&A1&"","


2022-09-30 17:28

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.