如何根据用户输入的值创建验证范围?
我想在单元格“A1”中创建一个验证范围。此验证允许用户输入从 1 到 x 的值,而 x 指的是用户在“B1”中输入的值。例如,如果用户在“B1”中输入值100,那么我们只能在单元格“A1”中输入1到100。
我想知道如何在 C# 中做到这一点?
I want to create a validation range in cell "A1". This validation allow user to input value from 1 to x, while x refer to value user input in "B1". For example, if user input value 100 in "B1" then we can input only 1 to 100 in cell "A1".
I want to know how to do this in C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您有互操作,则如下所示。请注意
xlValidateWholeNumber
,可以将其更改为xlValidateDecimal
(对于小数,下面的后续Formula1 需要是小数)。Assuming you have interop, it would be like the below. Note
xlValidateWholeNumber
, that can be changed toxlValidateDecimal
(and the subsequent Formula1 below would need to be a decimal) for decimals).