runtime error 424

Apple1

Board Regular
Joined
Jan 18, 2015
Messages
121
Using Excel 2013.

I have a runtime error 424, and the code will stop at the IF line. What is wrong with the code?

Sub test ()
Option explicit
dim ThisPeriod , LastPeriod as string

ThisPeriod = Range("B3")



LastPeriod = Range("B6")


If Left(ThisPeriod, 1).Text = "S" And Left(LastPeriod, 1).Text = "J" Then

Do some actions


Else

Do some actions



End If

End Sub


 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Try this:

Code:
Option Explicit
Sub test()
Dim ThisPeriod As String, LastPeriod As String
ThisPeriod = Range("B3").Text
LastPeriod = Range("B6").Text
If Left(ThisPeriod, 1) = "S" And Left(LastPeriod, 1) = "J" Then
MsgBox "yes"
Else
MsgBox "no"
End If
End Sub

Regards,

CJ
 
Upvote 0

Forum statistics

Threads
1,215,884
Messages
6,127,562
Members
449,385
Latest member
KMGLarson

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