If then or do loop

ericdv

New Member
Joined
Sep 14, 2011
Messages
6
Hi,
I am using Excel 2007 with 2003 backward compatibility requirements. I am new to VBA. I am creating a macro that pulls into Excel an external worksheet, re-formats it and then saves it as a text file. I have just about everything written with one exception. I need to enter text ("Z 3") into column B, if there is any content in the corresponding row of column A. It sounds easy, but I haven't been able to get any of the sample code to work properly. I think I just don't have the syntax correct. I believe it can be done with an if-then, but a do loop might be better. Any help is greatly appreciated. Thanks!
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Try

Code:
Sub Atest()
Dim LR As Long, i As Long
LR = Range("A" & Rows.Count).End(xlUp).Row
For i = 1 To LR
    If Range("A" & i).Value <> "" Then Range("B" & i).Value = "Z 3"
Next i
End Sub
 
Upvote 0
With a For Each loop:

Code:
Sub test()
Dim c As Range
For Each c In Range("A1:A" & Range("a" & Rows.Count).End(xlUp).Row)
    If c <> "" Then c.Offset(, 1) = "Z 3"
Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,532
Messages
6,179,388
Members
452,908
Latest member
MTDelphis

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