Run time error 5 - Invalid procedure call or arguement

danbates

Active Member
Joined
Oct 8, 2017
Messages
377
Office Version
  1. 2016
Platform
  1. Windows
Hi,

Please can someone help me?

I have a part of coding below:

Code:
    If Not Intersect(Target, Range("M:O")) Is Nothing Then
If Not Target.Value = "" And Asc(Left(Target.Value, 1)) <= 127 Then
            bCorrectPassword = False
            bWrongInput = True
            Target.Value = vbNullString
        End If
    End If

everything works fine until I press the 'delete' button and thats when the error appears. It highlights this line:

Code:
        If Not Target.Value = "" And Asc(Left(Target.Value, 1)) <= 127 Then

I have 2 different PC's at work at on 1 PC the error doesn't trigger and on the other 1 it does.

I was just wondering if anyone had any ideas to what might be causing this error.

Kind Regards

Dan
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Have you tried this?

Code:
If Not Target.Value = """" And Asc(Left(Target.Value, 1)) <= 127 Then

I hope this helps!
 
Upvote 0
Try
Code:
If Not Intersect(Target, Range("M:O")) Is Nothing And Len(Target) > 0 Then
   If Asc(Left(Target.Value, 1)) <= 127 Then
       bCorrectPassword = False
       bWrongInput = True
       Target.Value = vbNullString
   End If
End If
You are trying to check if the target is empty at the same time as checking the first character. You need to put them separately
 
Upvote 0
Hi Fluff,

that's sorted it Fluff, thank you.

Do you know why the previous code worked on 1 PC and not the other?

Kind Regards

Dan
 
Upvote 0
Glad to help & thanks for the feedback.

I'm surprised that it worked on 1 pc, I've always found that it doesn't work.
 
Upvote 0

Forum statistics

Threads
1,214,945
Messages
6,122,393
Members
449,081
Latest member
JAMES KECULAH

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top