在 Excel 中创建下拉列表

发布于 2024-12-17 08:01:45 字数 217 浏览 2 评论 0 原文

我正在更改旧的 Excel 电子表格,并且收到用户请求,将下拉列表添加到日期选择字段。

已使用“<=TODAY()”子句为相关单元打开数据验证(该工作表包含有关生产效率的信息,由于不存在数据,因此不知道下一步)。

用户请求过去 7 天的下拉列表。我可以创建一个列表并在 VBA 中枚举它,但我很难想出一种在不使用验证的情况下将下拉列表应用于单元格的方法。

这可能吗?

I'm changing an old Excel spreadsheet and have got a user-request to add a drop-down list to a date selection field.

Data Validation is already turned on for the cell in question with a "<=TODAY()" clause (the sheet contains information on production efficiency, no idea going forward since data is not there).

The user requests a drop-down listing the past seven days. I can make a list and enumerate it in VBA, but I am having difficulties coming up with a way to apply a drop-down list to a cell without using Validation.

Is this possible?

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

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

发布评论

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

评论(2

°如果伤别离去 2024-12-24 08:01:45

您可以尝试以下一些方法:

  1. 向单元格添加日期选择器(并保留您输入的公式验证)
    一个。请参阅 MSDN
    上的一些标准方法
    b.或者使用此博客上的插件
  2. <打开工作簿或使用 对下拉列表的验证rel="nofollow noreferrer">事件过程并添加另一个事件过程OnChange来检查输入的值是否在今天之前。

Here are some ways you can try:

  1. Add a datepicker to the cell (and keep the formula validation you put)
    a. See some standard way on MSDN
    b. or with an addin on this blog
  2. Change dynamicaly your validation to a dropdown list when the Workbook is opened or the worksheet activated with an event procedure and add another event procedure OnChange to check if the value entered is before today.
心清如水 2024-12-24 08:01:45

为什么不使用列表规则替换现有的数据验证规则?只需创建一个新工作表并输入 A1:A7

=TODAY()
=A1-1
...
=A1-6

然后将数据验证规则设置为“列表”并将新工作表上的源设置为 A1:A7。然后将纸张隐藏起来,以免妨碍操作。这应该保留旧的验证要求。

Why not replace the existing data validation rule with a list rule? Just create a new sheet and enter in A1:A7

=TODAY()
=A1-1
...
=A1-6

Then set your data validation rule to "List" and set the Source to A1:A7 on the new sheet. Then hide the sheet just to keep it out of the way. This should preserve the old validation requirement.

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