Ask a Question related to FileMaker, Design and Development.

  1. #1

    Default Calculating Dates

    I have a creation date field.
    A Approx Time frame field.

    Then a Approx Finish Date field.

    I can get it to add the correct amount of days to the creation date
    but i dont want it to count the weekends. Does anyone have or know the
    formula i should put in the calculation.

    Regards Michael.
    inzane Guest

  2. Similar Questions and Discussions

    1. calculating in tables
      Hi Group, Can anyone advise me whether there is an extension that will allow calculations within tables as with excel? I have a couple of...
    2. calculating the numbers
      Hi Guys, I can use your help here, how can I calculate the value entered by the user on the given fields of a form and at the end give me the...
    3. Calculating age
      On 19-Aug-2003, "Andrew Banks" <banksy@blablablablueyonder.co.uk> wrote: from the php manual mktime: Returns the Unix timestamp corresponding to...
    4. Calculating
      Hello everyone... I am going to make a script where I can add and subtract an amount from the database... Lets say 'james' have '2000'. And I...
    5. Calculating a field
      In Access2000 - I have a form that our shipping dept. uses when an item is shipped. They enter quantity shipped, weight, tracking number and...
  3. #2

    Default Re: Calculating Dates

    In reply to [email]b681fca9.0309032303.60d05da5@posting.google.com[/email] on 9/4/03 12:03
    AM by inzane [email]inzane@2pac-outlawz.com[/email]:

    Hi Michael,

    Try this one.

    creation date + Int(Time frame/5) * 7 +
    Middle("12345012340123601256014560345623456", (DayofWeek(creation date) - 1)
    * 5 + Mod(Time frame, 5) + 1, 1)

    HTH

    Lee
    > I have a creation date field.
    > A Approx Time frame field.
    >
    > Then a Approx Finish Date field.
    >
    > I can get it to add the correct amount of days to the creation date
    > but i dont want it to count the weekends. Does anyone have or know the
    > formula i should put in the calculation.
    >
    > Regards Michael.
    Lee Smith Guest

  4. #3

    Default calculating dates

    Does anyone know if there's an easy way to code (or buy an xTra) that will see if one date is between two others?

    Thanks!


    frankgrimes webforumsuser@macromedia.com Guest

  5. #4

    Default Re: calculating dates

    You can do math operations with the date object returned by the
    systemdate function


    put the systemdate
    -- date( 2003, 12, 8 )



    put the systemdate - date( 2003, 11, 3 )
    -- 35
    JB Guest

  6. #5

    Default Re: calculating dates


    read this:


    [url]http://webforums.macromedia.com/director/messageview.cfm?catid=187&threadid=730192&highligh t_key=y&keyword1=Date[/url]


    hope it helps!


    On Mon, 8 Dec 2003 21:07:57 +0000 (UTC), frankgrimes
    <webforumsuser@macromedia.com> wrote:
    > Does anyone know if there's an easy way to code (or buy an xTra) that
    > will see if one date is between two others?
    >
    > Thanks!
    >
    >
    >
    Christian Grass Guest

  7. #6

    Default Re: calculating dates

    You can make comparisons with the date object:

    put date(2003,12,5) < date(2004,1,1)
    -- 1

    --


    Dave
    [url]http://www.blurredistinction.com/director[/url]


    Dave Mennenoh Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139