Ask a Question related to Microsoft Access, Design and Development.
-
Gary Nelson #1
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
-
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 +)... -
Calculating age
On 19-Aug-2003, "Andrew Banks" <banksy@blablablablueyonder.co.uk> wrote: from the php manual mktime: Returns the Unix timestamp corresponding to... -
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. -
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... -
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,... -
Bish #2
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
uses when an item is>-----Original Message-----
>In Access2000 - I have a form that our shipping dept.number and freight>shipped. They enter quantity shipped, weight, trackingshipping company ->charge. The freight charge is what is passed on from theis used to ship our>UPS, FEDEX, etc. We also charge $1.25 for each box thatcharge.>product, which is currently be added into the freightwill enter the>
>1) I would like to have a seperate field which the usercartons will be>number of boxes used. From that entry, the number ofeither "freight>multiplied by $1.25 to provide the box charge.
>
>2) With the freight charge, if the items are shippedthe freight charge>collect" or "CBS" - (where the consignee is being billed)freight charge on to>would be $0.00. In all other cases, we would pass theshipments that are not F/C>the customer. Is it possible to only allow thoseCBS to stay at>or CBS to have a freight charge to be entered and F/C &a monthly invoice.>$0.00?
>
>Currently, the fields go to a table which also calculatesasking. Thanks in advance>
>If you need more information, please feel free in>for your help.
>
>
>.
>Bish Guest



Reply With Quote

