Wotan Posted December 21, 2000 Posted December 21, 2000 Is there an easy way round the 53 weeks a year Filemaker convention? I need to allocate work weeks. When Filemaker arrives at the end of a year it counts the last week as week 53.
LiveOak Posted December 21, 2000 Posted December 21, 2000 The way around FM's conventions is to write your own (i.e. calculate your own week number). Companies use a vast number of different standard weeks, months and quarters. It would be impossible for FM to implement them all. -bd
dmack Posted April 12, 2001 Posted April 12, 2001 quote: Originally posted by LiveOak: The way around FM's conventions is to write your own (i.e. calculate your own week number). Companies use a vast number of different standard weeks, months and quarters. It would be impossible for FM to implement them all. -bd LiveOak: What would you need to do this? I used this in excel... =IF((MOD(CEILING((DATECELL-"1/1/2001"+2)/7,1),52))=0,52,MOD(CEILING((DATECELL-"1/1/2001"+2)/7,1),52)) What could I do to adapt it to Filemaker? =IF((MOD(CEILING((DATECELL-"1/1/2001"+2)/7,1),52))=0,52,MOD(CEILING((DATECELL-"1/1/2001"+2)/7,1),52)) Mod(Round((DATEFIELD-"1/1/2001"+2)/7 ,1),52) just gives a "?"...
BobWeaver Posted April 12, 2001 Posted April 12, 2001 Try replacing "1/1/2001" with TextToDate("1/1/2001") and use the Min function instead of the Ceiling function
Recommended Posts
This topic is 8881 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