I am not sure exactly what you’re asking for, so here’s some different solutions in the hopes one accomplishes your goal:
A formula field with MONTH({Date field})
will give you the month number from a date and similarly YEAR({Date field})
will give you the year. You could also use DATETIME_FORMAT({Date field}, 'MMMM YYYY')
to get something like “June 2021”.
To compose a string of text that is (Month name from a date field) (Current Year)
, you could use a formula like this:
DATETIME_FORMAT({Date field}, 'MMMM') & " " & YEAR(TODAY())