adding up column values (asp & access 2000)

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Dan

    adding up column values (asp & access 2000)

    Hi

    I've got a quandry - I have a detailed database that handles advert
    orders between a design agency and printers / magazines etc.

    I want to add up the total spent by the client and put the results to a

    field.

    I've actually done that using a query table in access - it should be
    quite simple as i can bind the 'total amount' to my table - the only
    thing it does not currently do is filter the total based on the month
    selected.

    For example if you look at


    The data here is filtered by the issue equaling Dec-2006

    The actual order total is £13,622 but the column is showing the total
    for all entries to date (a years worth = £ 422,048)

    I'm sure that there is only a basic tweak required but i'm banging my
    head over what to do

    The sql is "SELECT * FROM monnodraught, q_monodraught_t otal WHERE
    [Issue / Edition] LIKE ? ORDER BY Publication ASC"

    Any help gladly received.

  • Douglas

    #2
    Re: adding up column values (asp & access 2000)

    Hi Dan,

    What is the SQL behind: q_monodraught_t otal ?
    Quote:
    The sql is "SELECT * FROM monnodraught, q_monodraught_t otal WHERE
    [Issue / Edition] LIKE ? ORDER BY Publication ASC"
    I'm thinking you might benefit from a SELECT SUM... query
    SELECT SUM(fieldname) FROM table WHERE condition ORDER BY fieldname; SELECT SUM(Age) FROM Persons WHERE Age>20good luck ;o)

    Cheers,
    Douglas

    --------------------------------------------------------------------------------


    "Dan" <mail@daneverto n.comwrote in message news:1164792444 .626863.242620@ h54g2000cwb.goo glegroups.com.. .
    Hi

    I've got a quandry - I have a detailed database that handles advert
    orders between a design agency and printers / magazines etc.

    I want to add up the total spent by the client and put the results to a

    field.

    I've actually done that using a query table in access - it should be
    quite simple as i can bind the 'total amount' to my table - the only
    thing it does not currently do is filter the total based on the month
    selected.

    For example if you look at


    The data here is filtered by the issue equaling Dec-2006

    The actual order total is £13,622 but the column is showing the total
    for all entries to date (a years worth = £ 422,048)

    I'm sure that there is only a basic tweak required but i'm banging my
    head over what to do

    The sql is "SELECT * FROM monnodraught, q_monodraught_t otal WHERE
    [Issue / Edition] LIKE ? ORDER BY Publication ASC"

    Any help gladly received.

    Comment

    Working...