分享点列表栏

发布于 2024-07-27 13:29:56 字数 129 浏览 1 评论 0原文

是否可以将该列设置为“单行文本”,并在计算值部分中以某种方式获取第 1 列和第 2 列中的值?

所以列表看起来像这样:

“col1 文本在这里”,“col2 文本”,“col1 文本在这里 col2 文本”

Is it possible for the column to be set as 'single line of text' and in the calculated value portion somehow grab the value from column 1 and column 2?

So the list looks like this:

"col1 text here", "col2 text", "col1 text here col2 text"

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

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

发布评论

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

评论(1

暮凉 2024-08-03 13:29:56

如果您只想连接两列的文本,则公式

=Column1&Column2

应该可以满足您的要求。 对于更复杂的示例,如果列名中包含空格并且您想要一个空格作为分隔符,请使用

=[Column 1]&" "&[Column 2]

或者您可以使用精心设计的连接运算符

=CONCATENATE(Column1, ",", Column2)

如果这根本不是您想要的,请重新表述问题。 :-)

If you just want to concatenate the text of the two columns, the formula

=Column1&Column2

should do what you want. For a bit more complex example, if the column names have spaces in them and you want a space as a separator, use

=[Column 1]&" "&[Column 2]

Or you can use the elaborate concatenate operator

=CONCATENATE(Column1, ",", Column2)

If this is not what you want at all, please rephrase the question. :-)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文