I created a formula using -MONTH to extract the Month Number, but i want that number to convert to the name (JAN, FEB, etc)
I started with pulling the Month Number from the Intake Date column;
=MONTH([Intake Date - \[Select Date\]]@row)
then, I used an =IF to convert the "1" to equal JAN:
=IF(Month1 = "1", "JAN")
I thought i could use an OR statement (multiple times) to name other months beside "1" (ie. "2"=FEB, 3=MAR...etc)
I tested it with a simple additional month number "2" , but it doesnt work.
=IF(OR(Month1 = "1", "JAN", (Month1 = "2", "FEB"))
Looking for guidance here so i can name each of the 12 months for the relative number value provided.
thank you!