knuckelhead
Technical User
I am thinking that my calculated field is having trouble being a calculated number field. The underlying fields are all number fields. So why would the Qry answer be aligned left. I am worried that the calculated field converted itself to Text. Do you see something in this calc to make the answer to become RIGHT aligned in the Qry?
SetupCleaningMH2: IIf(Val([SellUOM] & "")<>"CS",Nz(DLookUp("SetupCleaningMH","tblPack","PackID=" & [PackID] & " AND " & [StdconvFactor] & " Between LowerConvFactor And UpperConvFactor")),Nz(DLookUp("SetUpCleaningMH","tblPack","PackID=" & [PackID] & " AND " & [CSStdConvFactor] & " Between LowerConvFactor And UpperConvFactor"),0))
FYI: CS means case quantity whereas everything else is pounds or something else. the answer is fine. i just worry that a left align might bite me later.
Knucklehead Smith
SetupCleaningMH2: IIf(Val([SellUOM] & "")<>"CS",Nz(DLookUp("SetupCleaningMH","tblPack","PackID=" & [PackID] & " AND " & [StdconvFactor] & " Between LowerConvFactor And UpperConvFactor")),Nz(DLookUp("SetUpCleaningMH","tblPack","PackID=" & [PackID] & " AND " & [CSStdConvFactor] & " Between LowerConvFactor And UpperConvFactor"),0))
FYI: CS means case quantity whereas everything else is pounds or something else. the answer is fine. i just worry that a left align might bite me later.
Knucklehead Smith