MS InfoPath:如何使用函数填充日期框?主要是格式化日期问题
这可能是一个简单的问题。但我尝试在 InfoPath 字段中使用规则,如果用户在文本框中输入特定值,则日期框将填充特定日期。
示例:用户在 Textbox1 字段中输入“Orange”。 Datefield1 应填充 11/30/2010。
问题是我不知道如何在规则框中设置/格式化日期。 查看图片了解详细信息。
InfoPath 将格式标记为无效。我尝试过 2011 年 11 月 30 日、2011 年 11 月 30 日等。有什么想法吗?
This might be a simple question. But I am trying to use a rule in an InfoPath field where if a user enters a certain value in a text box, a date box will populate with a certain date.
Example: User enters "Orange" in the Textbox1 field. Datefield1 should populate with 11/30/2010.
The problem is I have no idea how to setup/format the date in the rule box. See picture for details.
InfoPath marks the format as invalid. I've tried 2011-Nov-30, 30-Nov-2011, and a few more. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
日期格式必须为 yyyy-mm-dd(“2010-01-01”)。或者,如果日期函数始终是当前日期,则可以使用日期函数
today()
。It has to be the date format yyyy-mm-dd ("2010-01-01"). Alternatively you can use the date function
today()
if it is always going to be the current date.