Get Day, Week or Month 6 April, 2023 0 Comment Steven int(formatDateTime(utcNow(), 'yyyy')) - Gets Year - 2023int(formatDateTime(utcNow(), 'MM')) - Gets Month - 01formatDateTime(utcNow(), 'MMM') - Gets Month - JanformatDateTime(utcNow(), 'MMMM') - Gets Month - JanuarydayOfWeek(utcNow()) - Gets Day of Week as Number - 01 - Wednesday would be 03formatDateTime(utcNow(), 'dddd') - Gets Day of Week - MondayformatDateTime(utcNow(), 'dd') - Gets Date as a Number - 03
No Comments