Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: ltollesonInternally the system stores a date type field as CCYY-MM-DD and that is the format that you will see in the BRDViewer. If you want to see the data in a different format you can convert it to a string.
FormattedDate = myDate.month().str().pad(2) + "/" + myDate.day().str().pad(2) + "/" + myDate.year()
The pad(2) function will ensure that all month and day values are 2 digits. Anything 1-9 will be prefaced with a zero.
The variable FormattedDate will contain a string in the form "MM/DD/YYYY". If you want to do use the date functions, then you will need to convert it back to a date type.
Thanks,
Larry