range method with multiple columns & i

jamada

Active Member
Joined
Mar 23, 2006
Messages
323
Hi there, the following code almost works, however it does not remove the middle range as desired, any suggestions!



"B" & i works ok
"O" & i works ok

"L" & i DOES NOT WORK


Dim i As Long
For i = Lastrow To 3 Step -1

If Cells(i, 1).Value > 0 Then
Range("B" & i & ",L" & i & ",O" & i).Replace What:="ZX ", Replacement:="", LookAt:=xlPart, SearchOrder:= _
xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False

End If
Next

Thanks Graham
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
It works for me. What is the value in col L when it doesn't work?
 
Upvote 0
Fluff... that's all it took, you pointed me in the right direction!

I was certain I was miscoding this, so much so I over looked what the value was in "L".
"B" & "O" had "ZX_", whereas "L" had "ZX" with no space!!!

Thank you for your help again!

Graham
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,215,020
Messages
6,122,712
Members
449,093
Latest member
Mnur

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