Jump to content

Next Month Calc


This topic is 6200 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Hi there,

Here is the issue. From a 'date' entered by the user, I want another field to calculate the next month. For example 04/30/2007 should be 05/30/2007.

This calc works OK:

DateToText(Date(Month(date) + 1, 1, Year(date)))

The result is 05/01/2007.

This calc doesn't work:

DateToText (Date (Month ( date ) + 1; DateToText (Date (Day ( date ); Year ( date )))))

The result should be 05/302007 but I ended up with an error message.

any help would be great

Link to comment
Share on other sites

Try:

DateToText (Date (Month ( date ) + 1; Day ( date ); Year ( date )))

Keep in mind, for a date like 10/31/07, you'd get 12/1/07 as the result, since there is no Nov. 31st.

Link to comment
Share on other sites

This topic is 6200 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.