sum multi record price

SalmanZeiad

Member
Local time
Today, 21:27
Joined
Oct 30, 2017
Messages
112
=sum([price_out]) give error how to sum all parts price in subform
 
InkedSharedScreenshot_LI.jpg
 
if priceout is calculated in the form (i.e. price*quantity) you use

=sum(price*quantity)

also this needs to be in the form header or footer of your subform in a control called say sfInvValue

then on your main form you would use

=mysubformcontrolname.form.sfInvValue
 
if priceout is calculated in the form (i.e. price*quantity) you use

=sum(price*quantity)

also this needs to be in the form header or footer of your subform in a control called say sfInvValue

then on your main form you would use

=mysubformcontrolname.form.sfInvValue
i want to give sum of total in marked cell
 
i want to give sum of total in marked cell
assuming your marked cell in on your main form - which it looks like from your image
then on your main form you would use

=mysubformcontrolname.form.sfInvValue
 
show the control you have on the subform footer
 

Users who are viewing this thread

Back
Top Bottom