Hello!
I have 1-many relationship:
tblMain: Invoice, Date
tblProducts: ProdID, Invoice, Product, PriceProduct, Packaging, PricePackaging
Okay, the deal is that all of the fields are being filled with info except PricePackaging which is being filled at the end of the month.
PricePackaging is a monthly value which depends on "Packaging", in other words, I tried making a query like this:
M: Month(Date), Packaging, PricePackaging
Group by M and Packaging
I could make it, but I cannot modify PricePackaging. I actually guess Group By would never allow me modify a query but how can I make this work so as not copy and paste the same values? That is a really heavy task on my db since its really big.
Thanks a LOT in advance!
I have 1-many relationship:
tblMain: Invoice, Date
tblProducts: ProdID, Invoice, Product, PriceProduct, Packaging, PricePackaging
Okay, the deal is that all of the fields are being filled with info except PricePackaging which is being filled at the end of the month.
PricePackaging is a monthly value which depends on "Packaging", in other words, I tried making a query like this:
M: Month(Date), Packaging, PricePackaging
Group by M and Packaging
I could make it, but I cannot modify PricePackaging. I actually guess Group By would never allow me modify a query but how can I make this work so as not copy and paste the same values? That is a really heavy task on my db since its really big.

Thanks a LOT in advance!