I'm trying to create an extended price by making query on a form
Basically, I have
My ExtPrice field is bound to ExtPrice in the table.
Another irritating problem I'm having is..
I have an AfterUpdate event with the following
Let's say the price of the item in Product is $3.25. The price that gets generated in [Price] is $3.00. It either rounds up or rounds down the value. The [Price] field is bound to [Price] in the table.
If I simply use an expression =product.column (2) in the [Price] field it transfers the decimals correctly but I would rather not go this route as I would like to bind the field.
Hoping someone can give me a hand with these 2 issues. I've searched everywhere. I've looked in a couple other order entry test databses and copied what was done with no success. I know I must be missing something but can't figure it out.
Basically, I have
Code:
SELECT DISTINCTROW [Siding Details].*, ([Quantity]*[Price]) AS ExtPrice FROM [Siding Details];
Another irritating problem I'm having is..
I have an AfterUpdate event with the following
Code:
Me.Price = Me.Product.Column(2) Me.Quantity.SetFocus
If I simply use an expression =product.column (2) in the [Price] field it transfers the decimals correctly but I would rather not go this route as I would like to bind the field.
Hoping someone can give me a hand with these 2 issues. I've searched everywhere. I've looked in a couple other order entry test databses and copied what was done with no success. I know I must be missing something but can't figure it out.
Comment