Aug 30, 2022 09:39 AM
Hi I would like to change the date format returned in my formula field - I’ve tried using datetime-format but keep getting an error
DATEADD({Date Invoice Raised}, 30,‘day,’) DATETIME_FORMAT(‘DD-MMMM-YYYY’)
thanks Clare
Solved! Go to Solution.
Aug 30, 2022 09:43 AM
Hey @Clare_Fitzpatrick!
Try this:
DATETIME_FORMAT( DATEADD( {Date Invoice Raised}, 30, 'days' ), 'DD-MMMM-YYYY' )
See Solution in Thread