Macro error

DDIC

Registered User.
Local time
Today, 02:52
Joined
Jul 30, 2002
Messages
11
I have a field on a form that I want to set the value of that field to the value of another field I have on the same form. The Macro is set up like this:

Item [Material]
Expression =[Forms]![Master Form]![MaterialType]

Error message is: You may have entered an operand without an operator.

This same set up works for my heat treat number field, and works if I take out the letters in my material type(4140L80 to 4140) but I need to keep that L80 in there. Anybody have this problem before, please help.

Thanks
Rusty
 
On the AfterUpdate Event of the MaterialType add the following:

me.Material = me.MaterialType
 
Thanks,jfgambit


I'll try this Monday, I am on vacation.

Thanks
 

Users who are viewing this thread

Back
Top Bottom