Hello friends, I’m trying to create a formula that returns the name of the month as text, concatenated with the year. I have used the following:
CONCATENATE(
IFS(
MONTH([Purchase Date])=1,“January”,
MONTH([Purchase Date])=2,“February”,
MONTH([Purchase Date])=3,“March”,
MONTH([Purchase Date])=4,“April”,
MONTH([Purchase Date])=5,“May”,
MONTH([Purchase Date])=6,“June”,
MONTH([Purchase Date])=7,“July”,
MONTH([Purchase Date])=8,“August”,
MONTH([Purchase Date])=9,“September”,
MONTH([Purchase Date])=10,“October”,
MONTH([Purchase Date])=11,“November”,
MONTH([Purchase Date])=12,“December”
),
“-”,
YEAR([Purchase Date])
)
It works, and I organize my table grouping by this field, however, when I tap save on the form, instead of returning June-2023, it returns a 5-digit number and the field quickly changes from June-2023 to a number by example 48599.
Has this ever happened to anyone?