extended price subform

Scottyg1987

New member
Local time
Today, 07:14
Joined
Jan 31, 2005
Messages
6
I am stuck for a calculation expression for 'extended price' which can be seen in the attached screenshot.

I want to times item price by quantity and deduct the discount.

Thanks. :)
 

Attachments

  • 10123.JPG
    10123.JPG
    44 KB · Views: 223
Last edited:
me!ExtendedPrice = me!UnitPrice * me!Quantity - nz(me!Discount)

Extrendedprice appears to be bound, it needn't/shouldn't be. Bindng it violates one of the normalization rules.

The NZ function is used on Discount because Discount may be Null.
 
yep put expression in, as shown in screenshot attachment but error name? is displayed when working this.
 

Attachments

  • untitledjj.JPG
    untitledjj.JPG
    73.6 KB · Views: 182
What I proposed would work in VBA, for controlsource use

= me!UnitPrice * me!Quantity - nz(me!Discount)
 

Users who are viewing this thread

Back
Top Bottom