G Guest Jun 24, 2005 #1 If Range("n6").Value.Len = 3 Then SendKeys "{F2}" Else: SendKeys "{F10}" End If Can someone help with this statment...
If Range("n6").Value.Len = 3 Then SendKeys "{F2}" Else: SendKeys "{F10}" End If Can someone help with this statment...
G Guest Jun 24, 2005 #2 Try this: If Len(Range("n6").Value) = 3 Then SendKeys "{F2}" Else: SendKeys "{F10}" End If Does that help?
Try this: If Len(Range("n6").Value) = 3 Then SendKeys "{F2}" Else: SendKeys "{F10}" End If Does that help?