AccessUser22
Technical User
I'm trying to display in a field the previous month. Since it's currently May, I want the field to display April. I can get the field to say '4' but can't figure out how to get the month as a char.
Using Datepart
DatePart(Month, Getdate()) - 1 <--Gives me '4'
Using Month
Month(Getdate()) - 1 <-- Gives me '4'
Anyway to get it to say "April"?
Using Datepart
DatePart(Month, Getdate()) - 1 <--Gives me '4'
Using Month
Month(Getdate()) - 1 <-- Gives me '4'
Anyway to get it to say "April"?