Bikeman17 Posted April 29, 2007 Posted April 29, 2007 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
fabriceN Posted April 29, 2007 Posted April 29, 2007 How about DateToText ( Date ( Month ( date ) + 1 ; Day ( date ) ; Year ( date ))) ? BTW where is DateToText function ?
Ender Posted April 29, 2007 Posted April 29, 2007 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.
Recommended Posts
This topic is 6478 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 accountSign in
Already have an account? Sign in here.
Sign In Now