如何在MS Excel中使用新行连接单元格值?

dr *_*rry 24 excel newline concatenation

在excel中,我可以在一个单元格中引入一个新行 [alt enter]

Boo[alt enter]Far
Run Code Online (Sandbox Code Playgroud)

结果是:

Boo
Far
Run Code Online (Sandbox Code Playgroud)

现在A1包含Boo,A2包含Far.如何A3以新行分隔显示这些值?

A3=A1[alt enter]&B1
Run Code Online (Sandbox Code Playgroud)

导致BooFar

A3=A1&[alt enter]B1
Run Code Online (Sandbox Code Playgroud)

导致BooFar

我怎样才能得到

Boo
Far
Run Code Online (Sandbox Code Playgroud)

通过使用单元格引用?

Gar*_*ent 33

A3输入:

=A1 & CHAR(10) & A2
Run Code Online (Sandbox Code Playgroud)

并为包装文本格式化A3