calculating in tables

Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default 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 tables of results that change every couple of weeks, and
    I have to update them manually, it would be so helpful if the rows and
    columns would self total.

    Thanks in advance to all those that take the time to reply.
    David


    fisherman Guest

  2. Similar Questions and Discussions

    1. calculating sum on 2 tables - help needed...
      I need to get a sum from query 1 (GetRecord) and the sum from query 2 (GetRecord2) then add the sums from the 2 tables together which should be...
    2. calculating costs.
      Hi all, I am doing experiments on a new operator I am writing as a C shared library function. 1) As part of the experimentation I need to know...
    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 datetime
      Hi, I have a datetime field in my table, i want to enter a datetime 1 day,1 hour and 10 mins into the future from today/the present, how do i...
  3. #2

    Default Re: calculating in tables

    There are several ways you could do it.

    The best would be to change your page to a dynamic page, and create a
    database with which you could update your values the easiest.

    Does your serer allow for soem type of server side scripting language, like
    PHP or ASP?

    If yes, it would be very simple to setup your values int he top of the page
    (or retrieve them with a database) and then put the calculations in place.

    (essentially would be

    $a=CONSTANT_VALUE; (or obtained from a database)
    $b=CONSTANT_VALUE;
    $c=$a+$b;

    Then, where you want to put them you just do:

    echo $a;

    echo $b;

    echo $c;

    You could also use Javascript in much the same way, but on a static (ie,
    HTML) page.
    "fisherman" <fisherman@eircom.net> wrote in message
    news:ehj60v$kdi$1@forums.macromedia.com...
    > 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 tables of results that change every couple of weeks,
    > and I have to update them manually, it would be so helpful if the rows and
    > columns would self total.
    >
    > Thanks in advance to all those that take the time to reply.
    > David
    >

    crash 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