My question is why you feel you need to store this calculated value.
Although there are good reasons to do so, in the majorities of cases, if the
value can be calculated, you shouldn't store it, just calculate it in a
query, form, or report whenever you need it.
--
--Roger Carlson
MS Access MVP
Access Database Samples:
www.rogersaccesslibrary.com
Want answers to your Access questions in your Email?
Free subscription:
http://peach.ease.lsoft.com/scripts/...UBED1=ACCESS-L
"Garret" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> I'd like to insert a derived field into this situation
>
> tblShipments (Parent table)
> Shipment_No
> Shipment_Size
>
>
> tblShipment_Inspection (Child table)
> Shipment_No (connected field)
> Item_Dimension
> (part of the item being inspected to see if it is "good")
> Number_Out_Tolerance
> (number of items in the shipment that are bad for this
> dimension)
>
>
> I'd like to create the field "Der_Percent_Good" that calculates the
> percentage of good items in the shipment.
> (1 - Number_Out_Tolerance/Shipment_Size)*100.
>
>
> How would I do this since the tables are related by Shipment_No, but
> the actual size of the shipment is in the parent table but the
> derived
> field would be in the child table.
>
> Thanks!
>