开发者

Sharepoint 2007 calculated Date field shows incorrectly in non-US region

开发者 https://www.devze.com 2022-12-23 05:29 出处:网络
If a SharePoint user (with Regional Settings set to UK) views a calculated date field in a View details form, the field shows incorrectly.

If a SharePoint user (with Regional Settings set to UK) views a calculated date field in a View details form, the field shows incorrectly.

I am using:

ddwrt:FormatD开发者_StackOverflow中文版ateTime(string(@RenewalDate), 1033, 'dd MMMM yyyy')

Which shows 04 January 2010 for 01/04/2010 and, doesnt show unresolvable dates such as 31-Dec-2010.

This applies even with a simnple =[Modified] formula

The Server is set up in the US for that locale.


could you change the formula as simnple =[Today] and check doest it works?

please try with the below formula

=IF(NOT(ISBLANK([Modified])),DAY([Modified])&" "&TEXT([Modified],"mmm")&" "&YEAR([Modified]),"") 

And it is working fine for me. Pls try it and let me know what you are getting.

0

精彩评论

暂无评论...
验证码 换一张
取 消