EndRow based on a cell value not location

jomayo

New Member
Joined
Mar 29, 2011
Messages
3
Hi. I’ve spent most of this day looking through Excel help and the internet trying to find a solution. I am VERY new at VBA, so please bear with me. I’m using VBA to hide rows in a sheet, and the column that determines whether or not to hide a row has references to another sheet throughout. I’d like for the code to stop at a certain point (either where a column value returns with zero OR where it would equal another cell in that row) instead of having to run the macro through cells it doesn’t need to look at. Below is what I have so far. I think I need to change the “EndRow =” reference, but I’m not sure to what. Thanks in advance for the help.<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:eek:ffice:eek:ffice" /><o:p></o:p>
<o:p> </o:p>
Sub HURows()<o:p></o:p>
BeginRow = 2<o:p></o:p>
EndRow = 1000<o:p></o:p>
ChkCol = 4<o:p></o:p>
<o:p> </o:p>
For RowCnt = BeginRow To EndRow<o:p></o:p>
If Cells(RowCnt, ChkCol).Value > 0 Then<o:p></o:p>
Cells(RowCnt, ChkCol).EntireRow.Hidden = True<o:p></o:p>
Else<o:p></o:p>
Cells(RowCnt, ChkCol).EntireRow.Hidden = False<o:p></o:p>
End If<o:p></o:p>
Next RowCnt<o:p></o:p>
End Sub<o:p></o:p>
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Code:
Sub HURows()
FinalRow = Cells(Rows.Count, 4).End(xlUp).Row
For i = 2 To FinalRow
If Cells(i, 4).Value > 0 Then
    Cells(i, 4).EntireRow.Hidden = True
End If
Next i
End Sub

this only takesthe macro to the last row, if you wanted a value to stop running then you could put something like

If Cells (i , 4).value = 33 then exit sub
 
Upvote 0

Forum statistics

Threads
1,214,942
Messages
6,122,366
Members
449,080
Latest member
Armadillos

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