有没有办法在Excel中使用下拉菜单来显示值而不是文本,例如第一个选项是选项1,但其值为1?
我正在尝试找到一种方便用户选择项目的方法,而不必知道该项目在数据库中的ID。
有没有办法在Excel中使用下拉菜单来显示值而不是文本,例如第一个选项是选项1,但其值为1?
我正在尝试找到一种方便用户选择项目的方法,而不必知道该项目在数据库中的ID。
是的,你可以。
首先设置ListFillRange属性为多列范围(例如“A1:B3”)。然后将ColumnWidths属性设置为类似于“50;0”的东西,这将使第二列不可见。最后,将BoundColumn属性设置为2。
The list will display Option1, Option2, Option3. And if you query it s value (ComboBox1.Value), it will return the value associated with the selected option (1, 2 or 3).
No, you can not.
But you may use your Options
as IDs
in the database as long as none of them are duplicates (which I think should be the case, or your users will not be able to distinguish them).