SharePoint Designer 2007 : Remove seconds fields from the email -


the email notification sent out sharepoint designer 2007 workflows includes seconds date/time field. example "this confirmation registered attend demo @ 10:00:00 am".

how can remove seconds field email message.

the sharepoint list date/time field displays fine (without seconds)

thanks

one option - create calculated column show formatted version of date , include column in email.

for example if you've got field called "my date" can create calculated column called "my formatted date" (or whatever makes sense) using following formula.

=text([my date]","mmm yyyy") 

will display date in format jul 2011

=text([my date]","dd/mm/yyyy") 

will show 21/7/2011.


Comments

Popular posts from this blog

javascript - Iterate over array and calculate average values of array-parts -

iphone - Using nested NSDictionary with Picker -

objective c - Newbie question -multiple parameters -