My user has their regional Date Format as Month Day Year, however, when browsing in Office 365 the Date Modified format shows in Day Month Year which is not desired.
When the user browses files outside of Office 365 the date modified is in the same order as the regional settings which is what is desired.
What setting is required to ensure that the date modified, when browsing with Office 365, matches the user's regional settings?
另外,其他用户也遇到同样的问题,并且日期修改格式有时不一致,有时是按年月日顺序。
我有一个称为主题的字段,主题中的数据有时是NOA,我想做的是当主题为NOA时将字段Date更改为空,如果不是,则使用Date字段中的Date。我知道这是不正确的,但类似这样:请参阅代码
Case
when subject not like 'NOA%' then date
else ''
end as NOADATE
Run Code Online (Sandbox Code Playgroud)