连接另一个工作表中的 Excel 单元格值

发布于 2024-10-16 01:44:59 字数 231 浏览 3 评论 0 原文

我刚刚开始使用 Excel(除了打开 csv 文件之外还可以做其他事情)

我有 Sheet1 和 Sheet2。 Sheet1!A1 是 "1"

在 Sheet2 A1 中,我想要

我尝试使用 & 连接 但它不起作用。

I have just starting to use excel (to do something other than just open csv files)

I have Sheet1 and Sheet2.
Sheet1!A1 is "1"

In Sheet2 A1 I would like to have

<myelement myattribute="1"/>

I have tried concatenating using & but it doesn't work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小傻瓜 2024-10-23 01:45:00

请尝试以下公式

=""

  • Char(34) 含义 "
  • Text(Number, Format) 将数字转换为字符串

Please try the following formula

="<myelement myattribute="&char(34)&text(Sheet1!A1,"0")&char(34)&"/>"

  • Char(34) meaning "
  • Text(Number, Format) converts the number to a string
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文