GetCurrentWindowsDomain: returns the name of the Windows domain of the currently logged in user.
GetCurrentWindowsUser: returns the user name of the currently logged in user. EmailSignature: this is used to return the email signature created in Options > User Defaults
and can be used in your emails.
FinancialWeek(startmonth, adjustdays): returns a number representing the financial week number given the month when the financial year started. The final results can be adjusted positively (add weeks to it) or negatively (take weeks away from it)
GetDate(format, adjustdays): returns the current system date. The format can be customized to suit and the final results can be adjusted positively (add days to it) or negatively (take days away from it). Formats can include a combination for example:
yyyy-MM-dd (default)
MM/dd/yyyy
dd/MM/yyyy
dd/MM/yy (short year)
dd/MMMM/yy (full month name, short year)
GetDateTime (format, adjustdays): returns the current system date and time. The format can be customized to suit and the final results can be adjusted positively (add days to it) or negatively (take days away from it).
GetDay(adjustdays): returns a number representing the day part of the current system date. The final results can be adjusted positively (add days to it) or negatively (take days away from it).
GetMonth(adjustmonths): returns a number representing the month part of the current system date. The final result can be adjusted positively (add months to it) or negatively (take months away from it).
GetMonthBeginLastMonth(format, adjustdays): returns the date of the first of the previous month. The format can be customized to suit and the final results can be adjusted positively (add days to it) or negatively (take days away from it).
GetMonthEndLastMonth(format, adjustdays): returns the date of the last of the previous month. The format can be customized to suit and the final results can be adjusted positively (add days to it) or negatively (take days away from it).
GetMonthName(adjustmonths): returns a string representing the name of the current month. The final result can be adjusted positively (add months to it) or negatively (take months away from it).
GetTime(format, adjustminutes): returns the current system time. The format can be customized to suit and the final results can be adjusted positively (add minutes to it) or negatively (take minutes away from it).
For 24 hour time use format HH:mm:ss
For 12 hour time use format hh:mm:ss [AM | PM]
GetWeekDayName(adjustdays): returns a string representing the name of the current week day. The final result can be adjusted positively (add days to it) or negatively (take days away from it).
GetWeekOfYear(firstdayoftheweek): return a number representing the week number of the year given the first day of the week (0 for Sunday, 1 for Monday etc)
GetYear(adjustyears): return a number representing the year part of the current system date. The final results can be adjusted positively (add years to it) or negatively (take years away from it
Comments
0 comments
Article is closed for comments.