替换包含等号和引号的公式中的单元格

替换包含等号和引号的公式中的单元格

我有以下数据:

http://example1.com    anchor text 1    
http://example2.com    anchor text 2
http://example3.com    anchor text 3    

我希望输出是:

http://example1.com    anchor text 1    <a href="http://example1.com">anchor text 1</a>
http://example2.com    anchor text 2    <a href="http://example1.com">anchor text 2</a>
http://example3.com    anchor text 3    <a href="http://example1.com">anchor text 3</a>

我尝试使用代码来用单元格 C1 替换单元格 A1 和 B1,如下所示:

="<a href="A1">B1</a>"

但是,由于 HTML 代码中的等号和双引号,我遇到了错误。我尝试使用单引号来转义它,但仍然没有成功。

有人知道怎么做吗?非常感谢您的帮助。

答案1

您需要使用多个引号来告诉 Excel 您想在输出中保留一个。

您还需要使用&将字符串连接在一起:

="<a href=""" & A1 & """>" & B1 & "</a>"

在此处输入图片描述

相关内容