Date Format Strings

Purpose The date format strings are used to convert and format a date as a string using the format calculation function.
Format
%aabbreviated weekday name
%Afull weekday name
%babbreviated month name
%Bfull month name
%cdate and time representation appropriate for locale
%dday of month
%Hhour in 24-hour format
%Ihour in 12-hour format
%jday of year
%mmonth as number
%Mminute
%pcurrent locale's AM/PM indicator
%Ssecond
%Unumber of week of year (with Sunday as first day of week)
%wnumber of weekday (Sunday = 0)
%Wnumber of week of year (with Monday as first day of week)
%xdate representation of current locale
%Xtime representation of current locale
%yyear without century
%Yyear with century
%z or %Ztime-zone name/abbreviation
%%percent sign

Numerical Format Strings

Purpose The numerical format strings are used to convert and format a number as a string using the format calculation function.
Format
999,999eliminates any numbers after the decimal point and specifies a six digit number with a single comma after the thousands column
999,999.99eliminates any numbers after two places after the decimal point and specifies an eight digit number with a single comma after the thousands column
999999eliminates any numbers after the decimal point and specifies a six digit number
999999.99eliminates any numbers after two places after the decimal point and specifies an eight digit number