Thanks so much, this is exactly what I needed!! I added 7 days using code from the article that you had sent and got the code below and it is working great: #set( $defaultTimeZone = $date.getTimeZone().getTimeZone("America/New_York") ) #set( $defaultLocale = $date.getLocale() ) #set( $calNow = $date.getCalendar() ) #set( $ret = $calNow.setTimeZone($defaultTimeZone) ) #set( $calConst = $field.in($calNow) ) #set( $ISO8601 = "yyyy-MM-dd'T'HH:mm:ss" ) #set( $ISO8601DateOnly = "yyyy-MM-dd" ) #define( $enUSDayOrdinalIndicators ) 1st,2nd,3rd,4th,5th,6th,7th,8th,9th,10th,11th,12th,13th,14th,15th,16th,17th,18th,19th,20th,21st,22nd,23rd,24th,25th,26th,27th,28th,29th,30th,31st #end #set( $indicatorList = $enUSDayOrdinalIndicators.toString().trim().split(",?\d+") ) $calNow.add($calConst.DATE,7) #set( $FRIENDLY_24H_DATETIME_WITH_FRIENDLY_TZ = "EEEE, MMMM d'${indicatorList[$calNow.get($calConst.DAY_OF_MONTH)]}'" ) ${date.format( "EEEE, MMMM d'${indicatorList[$calNow.get($calConst.DAY_OF_MONTH)]}'", $calNow, $defaultLocale, $defaultTimeZone )} Thanks!!!
... View more