caseavey Posted July 7, 2008 Posted July 7, 2008 I am trying to make a calculation that compiles information into a repeating calculation in FMP 6. How do i jump from one line of the field to the next repeating field. For example Day & Start Time & Venue [[[next line]]] Day & (Start Time + 1) & Venue ...
Raybaudi Posted July 7, 2008 Posted July 7, 2008 Extend ( Day ) & Extend ( Start Time ) + Get ( CalculationRepeatitionNumber ) - 1 & Extend ( Venue )
comment Posted July 7, 2008 Posted July 7, 2008 IIRC, the way to do this before version 7 was to have a global repeating field with pre-entered values of 1|2|3... etc., and a repeating number field set to lookup from the global. The calculation would then be: Extend ( BaseValue) + RepeatingNumber You might want to look at Mikhail Edoshin's Smart Ranges instead: http://www.onegasoft.com/tools/smartranges/index.shtml
caseavey Posted July 7, 2008 Author Posted July 7, 2008 what if i am trying to display every minute between two times. I tried using Case(Extend(Start Time)+(Number250*60) < End Time Calc, Extend(Start Time) + (Number250*60)) Number250 is a repeating field with 251 values including every number from 0-250 Start Time is the starting time End Time Calc is end time (ie 7:00, 7:01, 7:02, 7:03...7:59) , equals a repeat 7:00 = Start Time 8:00 = End Time Calc
Raybaudi Posted July 7, 2008 Posted July 7, 2008 You'll need to Extend End Time Calc too. Case( Extend( Start Time ) + Number250 * 60 < Extend( End Time Calc ) , Extend( Start Time ) + Number250 * 60 )
Recommended Posts
This topic is 6043 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