"[/]
In my Macro I have
([Forms]![Status of Payment]![Check Amount:])
in the item part and
([Forms]![Status of Payment]![Check Amount:]+
[Forms]![Status of Payment]![Text132])
in the expression part. I have the Macro as a (SetValue)
[/i]
If (it is a BIG "IF"

I ubderstand the above.
It refers to two (2) taxt boxes on the form. The form has the the two boxes populated from 'stuff' not seen here. When a command button is "clicked", the contents of textbox "Text132" should be added to the the contents of the textbox "Check Amount:"
While not really indicated, I will ASSUME that all these controls reside on a common / single form.
IF (and ONLY IF) the above are true and correct!!!
In design mode of the form. Select the command button and view the properties. Scroll through the properties to the "Click" event. I am GUESSING that you currently have the MACRO as the event here. So click on the combo box dowm arrow for the event and select Procedure. Now click on the elipiss at the right of the combo box. It will open up a module/code window with a 'name' like":
command
X_Click
with the cursor between the lines which say Sub and End Sub
Enter the following
Me.[Check Amount:] = CCur(Me.[Check Ammount:]) + CCUr(Me.[Text132])
Looking at the items in the expression, however raise another question. The "name" of the control "Check Amount:" appears to be in the format normally assigned to a
LABEL CAPRION, not that assigned to a text box. Could you please verify the naems shown are ht eNAMES of text box controls on your form?
MichaelRed
mred@att.net
There is never time to do it right but there is always time to do it over