Yes, this can absolutely be achieved in the formula itself. You’ll need to use MONTH() and YEAR() functions combined with a SWITCH statement to convert the month number to a three-letter abbreviation, then concatenate it with the year.
Here’s a formula that will give you “MMM YY” format:
CONCAT(
SWITCH(
MONTH(DATEADD({REVIEWED ON}, 1, “year”)),
1, “Jan”,
2, “Feb”,
3, “Mar”,
4, “Apr”,
5, “May”,
6, “Jun”,
7, “Jul”,
8, “Aug”,
9, “Sep”,
10, “Oct”,
11, “Nov”,
12, “Dec”,
“”
),
" ",
RIGHT(YEAR(DATEADD({REVIEWED ON}, 1, “year”)), 2)
)
This formula:
-
Uses DATEADD to add 1 year to your REVIEWED ON date
-
Extracts the month number with MONTH() and converts it to a 3-letter abbreviation using SWITCH
-
Extracts the year with YEAR() and uses RIGHT(..., 2) to get just the last two digits
-
Concatenates them with a space in between
The output will be something like “Mar 26” or “Nov 25”.
This is answer is from AI support