G
Guest
Here is the record source I had for the field "Tank Total" and it worked
GREAT until I moved the subform into another form
=IIf(zzzTankBasics_History.Form.RecordsetClone.RecordCount=0,0,Nz(zzzTankBasics_History.Form!Location_Overall_Total,0))
Originally zzzTankBasics_History was a subform within TankBasics. The code
worked. The field "Tank Total" has always been in the TankBasics form and it
still is.
Now zzzTankBasics_History is
Form -> Subform -> Subform
TankBasics -> zzzTankBasics -> zzzTankBasics_History
I tried adding zzzTankBasics in front of the zzzTankBasics_History for
=IIf(zzzTankBasics_History.Form.RecordsetClone.RecordCount=0,0,Nz(zzzTankBasics_History.Form!Location_Overall_Total,0))
but I get an #Name? in the field
Any help is appreciated.
Can
GREAT until I moved the subform into another form
=IIf(zzzTankBasics_History.Form.RecordsetClone.RecordCount=0,0,Nz(zzzTankBasics_History.Form!Location_Overall_Total,0))
Originally zzzTankBasics_History was a subform within TankBasics. The code
worked. The field "Tank Total" has always been in the TankBasics form and it
still is.
Now zzzTankBasics_History is
Form -> Subform -> Subform
TankBasics -> zzzTankBasics -> zzzTankBasics_History
I tried adding zzzTankBasics in front of the zzzTankBasics_History for
=IIf(zzzTankBasics_History.Form.RecordsetClone.RecordCount=0,0,Nz(zzzTankBasics_History.Form!Location_Overall_Total,0))
but I get an #Name? in the field
Any help is appreciated.
Can