424 VBA Error - If Statement

taostep1

Board Regular
Joined
May 18, 2016
Messages
65
Hi guys,

I am trying to run VBA macro to search the words "Red" or "Blue" in columns I, and if the condition is true it would need to process an RC[-9] formula in column N, accordingly.

However, I keep getting a 424 error per the red font below.

Any help would be great.

Sub test()


Sheets("Intern Confirmed Movement").Select

Dim Lastrow As Integer
Dim columnValues As Range, columnLookup As Range, i As Long
Lastrow = ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Row

Set columnValues = Range("N4:N" & Lastrow).Select
Set columnValues = Selection
Set columnLookup = Range("I4:I" & Lastrow).Select
Set columnLookup = Selection

For i = 1 To columnValues.Rows.Count

If columnLookup.Cells(i, 1).Value = "Red" Or columnLookup.Cells(i, 1).Value = "Blue" Then

columnValues.Cells(i, 1).Value = "=RC[-9]"


End If
Next


End Sub
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Try taking the ".Select" off. It's going to error out on the Set columnLookup line too. Remove the 2nd and 4th lines all-together. If it don't work with ".Select" removed, try adding ".Address"

EDIT: That sounds kind of confusing the way I typed it. It would be either:

Code:
[COLOR=#ff0000]Set columnValues = Range("N4:N" & Lastrow)[/COLOR]
    Set columnLookup = Range("I4:I" & Lastrow)

or

Code:
[COLOR=#ff0000]Set columnValues = Range("N4:N" & Lastrow).Address[/COLOR]
    Set columnLookup = Range("I4:I" & Lastrow).Address
 
Last edited:
Upvote 0
You could just put the relevant formula down column N:

Code:
Option Explicit
Sub Macro3()

    Dim lngLastRow As Long
    Dim wsSource   As Worksheet
    
    Application.ScreenUpdating = False
    
    Set wsSource = Sheets("Intern Confirmed Movement")
    
    lngLastRow = wsSource.Cells(Rows.Count, "I").End(xlUp).Row 'Set the variable based on the last Row from Col. I
    
    With wsSource.Range("N4:N" & lngLastRow)
        .Formula = "=IF(OR(I4=""Blue"",I4=""Red""),E4,"""")"
        .Value = .Value 'Convert the above formulas to values. Comment out if you want them to remain.
    End With
    
    Set wsSource = Nothing
    
    Application.ScreenUpdating = True

End Sub

Just a thought.

Robert
 
Last edited:
Upvote 0
Thank you Trebor! That worked like a charm.

But what happens if I wanted the IF formula to be any words that are not "Blue" or "Red", instead?



You could just put the relevant formula down column N:

Code:
Option Explicit
Sub Macro3()

    Dim lngLastRow As Long
    Dim wsSource   As Worksheet
    
    Application.ScreenUpdating = False
    
    Set wsSource = Sheets("Intern Confirmed Movement")
    
    lngLastRow = wsSource.Cells(Rows.Count, "I").End(xlUp).Row 'Set the variable based on the last Row from Col. I
    
    With wsSource.Range("N4:N" & lngLastRow)
        .Formula = "=IF(OR(I4=""Blue"",I4=""Red""),E4,"""")"
        .Value = .Value 'Convert the above formulas to values. Comment out if you want them to remain.
    End With
    
    Set wsSource = Nothing
    
    Application.ScreenUpdating = True

End Sub

Just a thought.

Robert
 
Upvote 0
To return what's in Col. E if there's anything in Col. I change this line of my existing code...

Code:
.Formula = "=IF(OR(I4=""Blue"",I4=""Red""),E4,"""")"

...to this:

Code:
.Formula = "=IF(LEN(I4)>0,E4,"""")"

HTH

Robert
 
Upvote 0

Forum statistics

Threads
1,215,743
Messages
6,126,604
Members
449,321
Latest member
syzer

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