You'll need to create a formula to extract the month from the date. This will supply you a number for the month. Then you'll need to make an If-Then-Else formula to name the months:
NumberVar Mth:= Month(DateField);
If Mth = 1 then "Jan" else
If Mth = 2 then "Feb" else
etc.
|