Hi @laceysharpe-1
You could use this method to return the month name. Whilst this is a long-winded approach, I would struggle to think of a situation in which this would not work reliably.
Set(varCurrentMonthName,
Switch(
Month(Today()),
1, "January",
2, "February",
3, "March",
4, "April",
5, "May",
6, "June",
7, "July",
8, "August",
9, "September",
10, "October",
11, "November",
12, "December",
""
)
)
I would add the Text(Today(), "mmmm") is reliable and I don't understand why you're seeing that result. The Text function returns the month name in the language that's configured in the browser. Therefore, it's worth checking what that is, and whether you have any browser extensions that could interfere with the way that the language is reported.