Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

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

Recommended Posts

Posted

Months meaning FULL months?

In other words,

If the start date is: 01/01/2006

and the end date is: 03/30/2006

Does that count as 2 months?

More info on what how you want to achieve the results.

Posted

Months meaning FULL months?

In other words,

If the start date is: 01/01/2006

and the end date is: 03/30/2006

Does that count as 2 months?

More info on what how you want to achieve the results.

Sorry about that, I want to include any months the dates contain.

Example:

01/01/2006

03/30/2006

# of months: 3

01/11/2006

03/05/2007

# of months: 15

Posted

Make a number field "NumberOfMonths"

Then write the following script steps in your code..

If(Year ( EndDate ) > Year ( StartDate ) )

{

setField(NumberOfMonths) = (12 * ( (Year(EndDate) - Year(StartDate)) - 1) )

+

(12 - ( (Month (StartDate) - 1)) + Month(EndDate) )

}

else

{

setField(NumberOfMonths) = (Month(EndDate)-Month (StartDate)+1)

}

This will work for all the permutations & combinations of StartDate and EndDate.

This topic is 6892 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.