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 6906 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

Please help if you know a way to do this.

In a newspaper publication file I have a number field for the issue number - 125, 126, 127 etc.

I need a calculation to convert these numbers into the issue month and year.

Issue 125 = Feb 06,

Issue 126 = Mar 06

Issue 127 = Apr 06 etc.

As new issues are added the calculation will need to continue on into future years. The further catch is that there are only 11 issues per year. They don't publish in July.

Thanks for any ideas.

Posted

Try:

Let ( [

y = Div ( Issue - 3 ; 11 ) + 1995 ;

m = Mod ( Issue - 3 ; 11 ) + 1

] ;

Date ( m + (m > 6) ; 1 ; y )

)

The result is date. Format the field to display as mmm yy.

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