If Then Statement in VBA

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

If Range("n6").Value.Len = 3 Then SendKeys "{F2}" Else: SendKeys "{F10}"
End If

Can someone help with this statment...
 
Try this:

If Len(Range("n6").Value) = 3 Then
SendKeys "{F2}"
Else:
SendKeys "{F10}"
End If

Does that help?
 

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

Back
Top