在计算列中获取 CreatedBy 日期的年份
我正在尝试在 SharePoint 2007 中创建一个计算列。我希望它返回 CreatedBy 列日期的年份,并将日期设置为 1,月份设置为 1 月,公式返回的数据类型为日期类型。
我有什么想法可以做到这一点吗? =YEAR([Created]) 似乎没有按预期工作。
谢谢 导航
I am trying to create a calculated column in SharePoint 2007. I want it to return the year of the CreatedBy column date and set the day to be 1 and the month to be January the data type returned by the formula is of type Date.
Any ideas how I can do this?
=YEAR([Created]) does not seem to work as expected.
Thanks
Nav
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
=DATE(YEAR([创建]),1,1)
=DATE(YEAR([Created]),1,1)
您可以简单地使用 =CONCATENATE(YEAR([Created])),它以纯文本形式表示年份
You can simply use =CONCATENATE(YEAR([Created])), it represents the year as plain text
另一个解决方案n = TEXT(已创建,“yyyy”)
Another solutionn = TEXT (created,"yyyy')