s-s-rS - hh:mm:ss tt 显示为“hh:mm:ss tt”而不是实际时间
Posted
技术标签:
【中文标题】s-s-rS - hh:mm:ss tt 显示为“hh:mm:ss tt”而不是实际时间【英文标题】:s-s-rS - hh:mm:ss tt showing as "hh:mm:ss tt" and not an actual time 【发布时间】:2019-03-14 16:25:39 【问题描述】:对报告来说还是很新的,目前正在尝试修改报告的时间格式,我希望它显示为(例如)02:30:05 PM,而不是当前/默认 14:30:05。
这是我目前所拥有的:
="between the hours of " & Format(Parameters!StartTime.Value, "hh:mm:ss tt") & " and " & Format(Parameters!EndTime.Value, "hh:mm:ss tt") & " (" & Parameters!TimeZone.Label & ")"
问题在于,运行报告时它会显示为“在 hh:mm:ss tt 和 hh:mm:ss tt 之间”而不是“在 02:30:05 PM 和 03:30 之间下午 5 点”。
关于为什么会这样的任何想法?谢谢!
【问题讨论】:
【参考方案1】:您的参数的数据类型似乎导致了这种情况。您目前很可能已将其设置为 Text
。在参数属性中,将其更改为Date/Time
。这将允许Format
函数将其解释为日期和时间而不是字符串。
或者,您可以将参数值转换为表达式中的日期,如下所示:
Format(CDate(Parameters!StartTime.Value), "hh:mm:ss tt")
【讨论】:
使用了第二种方法,效果很好——谢谢!以上是关于s-s-rS - hh:mm:ss tt 显示为“hh:mm:ss tt”而不是实际时间的主要内容,如果未能解决你的问题,请参考以下文章
vue实时显示当前时间且转化为“yyyy-MM-dd hh:mm:ss”格式
输出以秒为单位。在 php 中转换为 hh:mm:ss 格式