getting a total from different sources.

  • Thread starter Thread starter Michael
  • Start date Start date
M

Michael

I used to have a subform where the user inserted each the data for every
field and I had an equation to get the total weight [EsigenzainKG] as
follows

=[Colli x Pedana]*[N° Pedane]*[Desc]*[netto]/1000

then I created a query for one of the other fields called [confezione] that
has a list of the packaging and the weights and how many fit on a pallet and
so on and they query is called "confezionequery".

When the user chooses a type of package in [confezione], the [Desc]and
[netto] are displayed via =txtconfezione.Column(3) and
=txtconfezione.Column(1).

I need those values to get my [EsigenzainKG] . I tried the sql below and
that does not work,


=[Colli x Pedana]*[N°
Pedane]*[confezionequery].[Desc]*[confezionequery].[netto]/1000

any advice would be greatly appreciated.
Michael
 
Back
Top