G
Guest
I have a subform (sfrmPKsContainerFills) that has become a real mystery.
Here's the SQL (stripped out all unnecessary fields):
SELECT tblPKsContainerFills.txtProfileID,
tblPKsContainerFills.ContainerFillsID, tblPKsContainerFills.DeclaredWeight,
tblPKsContainerFills.DecWtUOM, [DeclaredWeight]*[gConvFactor] AS gConv
FROM tblPKsContainerFills LEFT JOIN tblUOMVolumeLiquidMass ON
tblPKsContainerFills.DecWtUOM = tblUOMVolumeLiquidMass.txtUOMVolumeLiquid;
The main form is bug-free and there's only one record in
tblPKsContainerFills. Everything works fine until I add
tblUOMVolumeLiquidMass to the SQL above. When this is added the subform
doesn't display until I navigate the main form to the record that relates to
the one in tblPKsContainerFills.
Does anyone see what I'm doing wrong? Your help is greatly appreciated.
Thanks!
Here's the SQL (stripped out all unnecessary fields):
SELECT tblPKsContainerFills.txtProfileID,
tblPKsContainerFills.ContainerFillsID, tblPKsContainerFills.DeclaredWeight,
tblPKsContainerFills.DecWtUOM, [DeclaredWeight]*[gConvFactor] AS gConv
FROM tblPKsContainerFills LEFT JOIN tblUOMVolumeLiquidMass ON
tblPKsContainerFills.DecWtUOM = tblUOMVolumeLiquidMass.txtUOMVolumeLiquid;
The main form is bug-free and there's only one record in
tblPKsContainerFills. Everything works fine until I add
tblUOMVolumeLiquidMass to the SQL above. When this is added the subform
doesn't display until I navigate the main form to the record that relates to
the one in tblPKsContainerFills.
Does anyone see what I'm doing wrong? Your help is greatly appreciated.
Thanks!