Calc returns garbled result

Ask a Question related to FileMaker, Design and Development.

  1. #1

    Default Calc returns garbled result

    What am I doing wrong here, it doesn't work? Field payment date is formatted
    01/01/2001

    Next Payment Due=

    DateToText(Date(Month(Payment Date) + 1, Day(Payment Date), Year(Payment
    Date)))
    --

    The Wolf Guest

  2. Similar Questions and Discussions

    1. How come the web service returns no result ?
      Hi everyone, If possible, please tell me how come the two trace statements return nothing. <mx:Script> <!]> </mx:Script> ...
    2. #40290 [NEW]: strtotime() returns unexpected result with particular timezone offset
      From: patrick at papaq dot org Operating system: Win32/CentOS/Fedora PHP version: 5.2.0 PHP Bug Type: Date/time related Bug...
    3. #39857 [NEW]: Ereg(i) returns irrelevant result
      From: adult at adult-inc dot biz Operating system: Fedora core 5 PHP version: 5.2.0 PHP Bug Type: Regexps related Bug...
    4. Looking into a recordset until it returns a result
      I currently connect to two servers. One is IIS, that runs my asp and sql server, and the other is an AS400, that also cranks out data. Sometimes I...
    5. Query Which Returns A Result Set Depending On Two Criterias !
      "Lovely Angel For You" <lovely_angel_for_you@yahoo.com> wrote in message news:55295a7e.0306280821.35cdd9ed@posting.google.com... Joins are well...
  3. #2

    Default Re: Calc returns garbled result

    In reply to BBAD511B.3FCDD%elvispmpsd@earthlink.net on 10/11/03 6:18 AM by
    The Wolf [email]elvispmpsd@earthlink.net[/email]:
    > Next Payment Due=
    >
    Date(Month(Payment Date) +1,Day( Payment Date), Year(Payment Date))

    Lee

    Lee Smith Guest

  4. #3

    Default Re: Calc returns garbled result

    On 10/11/03 8:13 AM, in article BBAD6C1E.2ED14%lee@pacific.net, "Lee Smith"
    <lee@pacific.net> opined:
    > In reply to BBAD511B.3FCDD%elvispmpsd@earthlink.net on 10/11/03 6:18 AM by
    > The Wolf [email]elvispmpsd@earthlink.net[/email]:
    >
    >> Next Payment Due=
    >>
    > Date(Month(Payment Date) +1,Day( Payment Date), Year(Payment Date))
    >
    > Lee
    >
    Thank you! I copied the other one out of FMP5 help. Don't know what was
    wrong. Having said that, yours works fine.
    --
    ================================================== =================
    "When a broad table is to be made, and the edges of planks do not fit, the
    artist takes a little from both, and makes a good joint. In like manner
    here, both sides must part with some of their demands," Benjamin Franklin
    (1706-1790)
    ================================================== =================

    The Wolf Guest

  5. #4

    Default Re: Calc returns garbled result

    In article <BBADEF14.3FD08%elvispmpsd@earthlink.net>, The Wolf
    <elvispmpsd@earthlink.net> wrote:
    > On 10/11/03 8:13 AM, in article BBAD6C1E.2ED14%lee@pacific.net, "Lee Smith"
    > <lee@pacific.net> opined:
    >
    > > In reply to BBAD511B.3FCDD%elvispmpsd@earthlink.net on 10/11/03 6:18 AM by
    > > The Wolf [email]elvispmpsd@earthlink.net[/email]:
    > >
    > >> Next Payment Due=
    > >>
    > > Date(Month(Payment Date) +1,Day( Payment Date), Year(Payment Date))
    >
    > Thank you! I copied the other one out of FMP5 help. Don't know what was
    > wrong. Having said that, yours works fine.
    Your original calculation was

    Next Payment Due=
    DateToText(Date(Month(Payment Date) + 1, Day(Payment Date), Year(Payment
    Date)))

    I'm guessing, but since Lee's versions works I'd say you had the Next
    Payment Due calculation returning a Date result.

    The only difference between the two is the DateToText function. It was
    this which was trying to take the calculated date, turn it into text
    and then store it in a Date result field ... not really possible, so
    FileMaker displays a ? instead. :o)

    Helpful Harry
    "Just trying to help whenever I can." :o)
    Helpful Harry 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