jmd0252
Programmer
- May 15, 2003
- 667
We have a birthday list for the H/R department. I have the date borken so that I can group based on month, and then day.
stringvar x := {PM_EMPMASTER.BIRTH_DATE};
datevar birth := date(val(left(x,4)),val(mid(x,5,2)),val(right(x,2)));
Month (birth)
This is my formula to get the month.
Is it possible to convert it to the Months of the year, ie January, etc??
I did the ToWords, opps,, one time 1.00 ,, does not equal January.
stringvar x := {PM_EMPMASTER.BIRTH_DATE};
datevar birth := date(val(left(x,4)),val(mid(x,5,2)),val(right(x,2)));
Month (birth)
This is my formula to get the month.
Is it possible to convert it to the Months of the year, ie January, etc??
I did the ToWords, opps,, one time 1.00 ,, does not equal January.