target value

C

Curt

missing something or trying to much at one time. last line here is to change
target value to 10 don't know what I missed but it doesn't change
Thanks

Application.EnableEvents = False
If Target.Column = 12 And Target.Value <= 10 And
IsNumeric(Target.Value) Then _
Call CopyMailE(Target)
If Target.Column = 12 And Target.Value > 10 And IsNumeric(Target.Value)
Then _
Call CopyDonors(Target)
If Target.Column = 12 And Target.Value > 10 And IsNumeric(Target.Value)
Then _
Call CopyMailD(Target)
If Target.Column = 12 And Target.Value > 10 And
IsNumeric(Target.Value) Then _
Target.Value = 10
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

stop application {on keys} 1
chg by val 1
conflict with code 7
clear contents re value 9
Code comonr to all worksheets 4
Trigger Question 2
Insert code 2
Mixed format 5

Top