I have a form with a label whose value is being passed in from a form(LabelA). There's also a textbox which is a calculated control(Label G). I need to know how to set another textbox as the difference of the 2.
So far I have the textbox controlsource as
=([LabelA]- [LabelG])
which gives the following error on the report
#error
I already have the value for LabelA and LabelG printed correctly on the report. LabelG is also a calculated textbox whose controlsource is
where labelD and labelE1 are textboxes(I'm not sure if this makes a difference).
As I've mentioned above I need help setting another textbox as the difference of the 2.
Suggestions anyone
So far I have the textbox controlsource as
=([LabelA]- [LabelG])
which gives the following error on the report
#error
I already have the value for LabelA and LabelG printed correctly on the report. LabelG is also a calculated textbox whose controlsource is
Code:
=Sum([Forms]![Accountability Main]![FPrompt])+[LabelD]+[LabelE1]
where labelD and labelE1 are textboxes(I'm not sure if this makes a difference).
As I've mentioned above I need help setting another textbox as the difference of the 2.
Suggestions anyone