在列中查找值以显示名称

发布于 2024-11-02 02:43:06 字数 184 浏览 4 评论 0原文

我有 2 列 - 名称 ID 和名称。

当用户向表单中的共享点数据表添加新条目时,他们会看到一个包含所有名称的下拉列表(总共大约 20 个)。

我可以做什么,以便当他们选择名称时,名称 ID 字段会自动填充相应的详细信息?

我是否需要在某个地方保存这些数据以及如何创建这些计算列?

提前致谢

I've got 2 columns - Name ID and Name.

When a user adds a new entry to the sharepoint datasheet in the form, they have a dropdown list of all names (around 20 in total).

What can I do, so that when they select the name, the Name ID field auto-populates with its corresponding details?

Is there somewhere I need to hold this data and how do I go about creating these calculated columns?

Thanks in advance

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

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

发布评论

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

评论(1

离线来电— 2024-11-09 02:43:06

您应该能够执行类似的操作

=TEXT([NameIDcolumn])
# Or
=CONCATENATE("You selected:", [NameIDColumn])

但是,您不能使用 ID 列中的值或在计算的列中使用类似的想法,因为该值尚不存在。 SharePoint 开发团队在创建该数据类型时很可能吸食大麻,因为许多本应存在的好东西却没有。

您可以在此处使用计算列制作内容的完整参考 http://office.microsoft.com/en-us/windows-sharepoint-services-help/CH010065006.aspx

You should just be able to do something like this

=TEXT([NameIDcolumn])
# Or
=CONCATENATE("You selected:", [NameIDColumn])

However, you cant use the value from the ID column or any think like that in a calculated col since the value does not exist yet. The SharePoint dev team was most likely smoking crack when creating that datatype since a lot of good stuff that should have been there isn't.

You have the complete reference of stuff you can make with calculated columns here http://office.microsoft.com/en-us/windows-sharepoint-services-help/CH010065006.aspx

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