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

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
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,149
Messages
6,123,311
Members
449,095
Latest member
Chestertim

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