Excel Macro - If Cell contains a character go to the next row and STOP when Empty

Gomes1985

New Member
Joined
Jun 20, 2016
Messages
32
Hi All,

I Am reading and excel sheet using macro. I have Put a condition already if the code come across ani ISNummeric = false Skip it to next line.

I wanna know if the code comes a line where Column A B and C is empty Code should end DO Not go Beyond that row. Below is the table as per table below

Code should end after line 3(SEQ)

The job Exits If I have 2 Character values in Column A


I think just a logical error or I am not using the Code at right place.

SEQaccbsb
bas1234567
bas456789
21234567
314778
4474456
5741475

<tbody>
</tbody>


Public Sub proIterate()
Dim RowCounter As Long
InitialRow = 2
'Write a procedure that counts the number of rows...
FinalRow = BaseSheet.Cells(BaseSheet.Rows.Count, "B").End(xlUp).Row 'This gives the number of data in the column "B"


For RowCounter = InitialRow To ThisWorkbook.Sheets("Sheet1").Cells(ThisWorkbook.Sheets("Sheet1").Rows.Count, "A").End(xlUp).Row ' The loop you wanted
With ThisWorkbook.Sheets("Sheet1")
If .Cells(RowCounter, "A").Value = "" And _
.Cells(RowCounter, "B").Value = "" And _
.Cells(RowCounter, "C").Value = "" Then Exit For
End With
If IsNumeric(ThisWorkbook.Sheets("Sheet1").Cells(RowCounter, "A")) = True Then
Call proNewMacro
End If
InitialRow = InitialRow + 1
Next
MsgBox ("The End")
End Sub
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Hello Gomes1985 (again),

I'm not too sure about some of your code but you can use the following to stop the macro if there's nothing in columns A, B & C:

Code:
If Len(.Cells(RowCounter, "A")) = 0 And _
Len(.Cells(RowCounter, "B")) = 0 And _
Len(.Cells(RowCounter, "C")) = 0 Then Exit For

Regards,

Robert
 
Upvote 0
Hi Trebor76,

Sorry I had to come back again Code it right.

its logical error.

What happens is since its to String It does not go to 3 rd row for some reason.

I might have to pull apart

With ThisWorkbook.Sheets("Sheet1")
If .Cells(RowCounter, "A").Value = "" And _
.Cells(RowCounter, "B").Value = "" And _
.Cells(RowCounter, "C").Value = "" Then Exit For
End With

Code checks for Numerics and work fine

even skips. Code is working fine but Loop Exits at Row 3

What should happen is it should read

21234567
314778

<tbody>
</tbody>
Then Exit the loop.

Code is correct its Logical error I think

Funny thing is if I have Only 2 records it works too

p.s - Its not a duplicate post Its slightly different issue
 
Upvote 0
p.s - Its not a duplicate post Its slightly different issue

How is post #1 of this thread different to the question you asked in post #6 of the other thread :confused:
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,748
Members
448,989
Latest member
mariah3

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