addWeeks
Add (or subtract) weeks to a date. Equivalent to addDays(date, count * 7).
date(required): the starting date or datetimecount(required): number of weeks to add. Negative to subtract.
utlx
addWeeks(parseDate("2026-05-01", "yyyy-MM-dd"), 2) // 2026-05-15
addWeeks(parseDate("2026-05-01", "yyyy-MM-dd"), -1) // 2026-04-24