S
Sharad Gupta
Friends
I need a date simple date function that would append the coming month
value in my current month
like
monthname(month(date)) : gives me current month in string
i need next month , a string value added to it.
The problem I am facing is this..
prevmon = monthname(month(date) + 1)
this is last month of the year, and when I append 1 to this function,
it gives error since dec is the last month of the year. It is not
appending itself to Jan2005.
It works fine for getting the string value for last month iei
prevmon = monthname(month(date) - 1)
Pls help
I need a date simple date function that would append the coming month
value in my current month
like
monthname(month(date)) : gives me current month in string
i need next month , a string value added to it.
The problem I am facing is this..
prevmon = monthname(month(date) + 1)
this is last month of the year, and when I append 1 to this function,
it gives error since dec is the last month of the year. It is not
appending itself to Jan2005.
It works fine for getting the string value for last month iei
prevmon = monthname(month(date) - 1)
Pls help