Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一份报告,当它运行时,它会拉出一个日期。当日期显示在报告上时,显示如下:
11/20/2012 12:00:00AM
我希望它显示为:
11/20/2012
尝试在格式公式编辑器中编辑公式时,出现以下错误:
这个几乎在任何情况下都很完美:
ToText(Cdate({Command.Payment Date}),"dd/MMM/yyyy")
我最终使用了这个公式:
ToText(Cdate({tbl_R002.Date}))
假设该字段是 DateTime 您需要为此使用 ToText 函数,即
ToText({tablename.fieldname}, "MM/dd/yyyy")