Ask a Question related to Microsoft Access, Design and Development.

  1. #1

    Default 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 freight
    charge. The freight charge is what is passed on from the shipping company -
    UPS, FEDEX, etc. We also charge $1.25 for each box that is used to ship our
    product, which is currently be added into the freight charge.

    1) I would like to have a seperate field which the user will enter the
    number of boxes used. From that entry, the number of cartons will be
    multiplied by $1.25 to provide the box charge.

    2) With the freight charge, if the items are shipped either "freight
    collect" or "CBS" - (where the consignee is being billed) the freight charge
    would be $0.00. In all other cases, we would pass the freight charge on to
    the customer. Is it possible to only allow those shipments that are not F/C
    or CBS to have a freight charge to be entered and F/C & CBS to stay at
    $0.00?

    Currently, the fields go to a table which also calculates a monthly invoice.

    If you need more information, please feel free in asking. Thanks in advance
    for your help.


    Gary Nelson Guest

  2. Similar Questions and Discussions

    1. Calculating field - minus??
      Hi, OK I have a form created in Acrobat 8 Pro with all the fields set as they should be and some fields calculate the value of others by (plus +)...
    2. Calculating age
      On 19-Aug-2003, "Andrew Banks" <banksy@blablablablueyonder.co.uk> wrote: from the php manual mktime: Returns the Unix timestamp corresponding to...
    3. Acrobat 5.0 Calculating form field data
      I created a spreadsheet adding rows and columns and I get an error message "f has no properties" when I enter data.
    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 field in ASP
      I have an Access database used to track donor pledges. In it, there is a table that contains three fields for each donor: Gift_Amount,...
  3. #2

    Default Calculating a field

    To confirm you have a form textbox in which the user
    enters a number of boxes, I'll call it txt_Boxes. There
    is also a checkbox field that indicates if the client is
    CBS, called chk_CBS. Finally we have a textbox called
    txt_FreightCharge which shows how much the charge is.

    In the after update even of the textbox txt_Boxes use the
    following:

    If chk_CBS = True Then
    txt_FreightCharge = txt_FreighCharge + (txt_Boxes * 1.25)
    End If

    this procedure will add the current freight charge, if
    there is any with the result of the second charge only if
    the client is CBS



    >-----Original Message-----
    >In Access2000 - I have a form that our shipping dept.
    uses when an item is
    >shipped. They enter quantity shipped, weight, tracking
    number and freight
    >charge. The freight charge is what is passed on from the
    shipping company -
    >UPS, FEDEX, etc. We also charge $1.25 for each box that
    is used to ship our
    >product, which is currently be added into the freight
    charge.
    >
    >1) I would like to have a seperate field which the user
    will enter the
    >number of boxes used. From that entry, the number of
    cartons will be
    >multiplied by $1.25 to provide the box charge.
    >
    >2) With the freight charge, if the items are shipped
    either "freight
    >collect" or "CBS" - (where the consignee is being billed)
    the freight charge
    >would be $0.00. In all other cases, we would pass the
    freight charge on to
    >the customer. Is it possible to only allow those
    shipments that are not F/C
    >or CBS to have a freight charge to be entered and F/C &
    CBS to stay at
    >$0.00?
    >
    >Currently, the fields go to a table which also calculates
    a monthly invoice.
    >
    >If you need more information, please feel free in
    asking. Thanks in advance
    >for your help.
    >
    >
    >.
    >
    Bish 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