Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Date(Interval(nwEVENTDTE - 56, 'd'),'mm/dd/yyyy') | AS | EightWeeks |
A line in my script appears as above. However, when I load the script and view the data, the field displays as 00/03/2016, which should be 11/03/2016.
Am I formatting this incorrectly in the script?
Format code for month is MM, not mm (which denotes minutes):
'MM/DD/YYYY'
Format code for month is MM, not mm (which denotes minutes):
'MM/DD/YYYY'
Besides this, no need to format the inner calculation:
Date(nwEVENTDTE - 56,'MM/DD/YYYY') AS EightWeeks