Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

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

Recommended Posts

Posted

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

Posted

How about

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

?

BTW :B where is DateToText function ?

Posted

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.

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 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.