Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
Im using macro to send Excel files through email
the problem is appeared , when the email id is incorrect and it stops there
In such cases i want to move to next emailId.
How can I jump to next email Id record when the previous is incorrect
In short I want to identify the correct emailId and inCorrect Email ID in ???
can u send the Macro code?
You should check the mail-adress before you run the send statement and if false take the next mail:
If(len(mail)) > x and instr(mail, "@') > 1 .....
Also you could tried with "On error resume next" or react on a specific error message.
- Marcus