
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to change Date format
How to change Date format from 10-SEP-15 to 9/10/2015 in the back end ?
Thanks
Accepted Solutions


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Date(Date#(yourdatefield,'DD-MMM-YY'),'M/D/YYYY') as yourdatefield
and make sure your MonthNames variable is set correctly to interpret the month names.
regards
Marco

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
use the code in script:
Date(Date#(Date,'DD-MMM-YYYY'), 'M/D/YY') as Date1
plz find the app attached.


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Date(Date#(yourdatefield,'DD-MMM-YY'),'M/D/YYYY') as yourdatefield
and make sure your MonthNames variable is set correctly to interpret the month names.
regards
Marco

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In case you wanted to keep both formats and you would like to change between them, you could set a variable vtest='dateformat'; in the script and in the front end you could create a text box and set this variable with value 0 and value 1 depend the format you want to displayed each time.
