Hide rows based on multiple cell content in row

tjktm

New Member
Joined
Mar 2, 2016
Messages
31
<style> <!-- /* Font Definitions */ @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:1; mso-generic-font-family:roman; mso-font-format:eek:ther; mso-font-pitch:variable; mso-font-signature:0 0 0 0 0 0;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-536870145 1073786111 1 0 415 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:""; margin-top:0in; margin-right:0in; margin-bottom:8.0pt; margin-left:0in; line-height:107%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri",sans-serif; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:"Times New Roman"; mso-bidi-theme-font:minor-bidi;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-family:"Calibri",sans-serif; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:"Times New Roman"; mso-bidi-theme-font:minor-bidi;} .MsoPapDefault {mso-style-type:export-only; margin-bottom:8.0pt; line-height:107%;} @Page WordSection1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.WordSection1 {page:WordSection1;} --> </style> I need help to hide/unhide rows based on the contents of two of the cells in the same row. My current code doesnt quite do the trick anymore due to having to insert or delete rows:


If Column A has specific data (ex. S.2) and Column L in that row has no dollar amount, I would need to hide the column. If Column L does have a dollar value, then it remains unhidden.



Below is an example of what I have currently. However, the number of rows change (+/-) so I cannot use the code for specific cell values as shown below:
Sub Hide_Unhide_0300()

For Each cell In Range("L158:L183")

If cell.EntireRow.Hidden = True Then

cell.EntireRow.Hidden = False
Else
If cell.Value = "0" Then
cell.EntireRow.Hidden = True
End If
End If
Next cell

End Sub

Thank you for any help you can give

TJ
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
You reference L158:L183, but what is the range you need to evaluate. All of column A because we can't use L?

Code:
Sub Hide_Unhide_0300()
    Dim Rng     As Range
    Dim cell    As Range
    Set Rng = Range(Range("A2"), Range("A" & Rows.Count).End(xlUp))
    Cells.EntireRow.Hidden = False
    For Each cell In Rng
        If cell.Value = "S.2" And cell.Offset(, 11).Value = 0 Then cell.EntireRow.Hidden = True
    Next cell
End Sub
 
Last edited:
Upvote 0
I need to first evaluate all of Column A for first 300 rows for "S.2" , then Column L for value / no value of those rows

Excel 2013/2016
.
.
.
.
.
.
.
ABCL
1S.3 $ 9.00
2S.3 $ 5.00
3S.4 $ 6.00
4S.3
5S.3
62.11 $ 2.00
7
8

<tbody>
</tbody>

I hope this small screenshot helps. I attempted to name/number my own rows and columns.

The code would need to hide everything except for the first two rows. (Actually rows 2 &3) since they are the only two that have "S.3" in the first column and a dollar figure in Column L.

thanks
 
Last edited:
Upvote 0
How about
Code:
Sub HideUnhideRws()
   Dim Cl As Range
   
   Cells.EntireRow.Hidden = False
   
   For Each Cl In Range("A2", Range("A" & Rows.Count).End(xlUp))
      If Cl.Value = "S.3" And Cl.Offset(, 11).Value = 0 Then
         Cl.EntireRow.Hidden = True
      ElseIf Not Cl.Value = "S.3" Then
         Cl.EntireRow.Hidden = True
      End If
   Next Cl
End Sub
 
Upvote 0
still doesn't work. it starts at the last "S.3" and then hides every row all the way up the page.

Sub Hide_Unhide_0300()

Dim Cl As Range
Application.ScreenUpdating = False
Cells.EntireRow.Hidden = False

For Each Cl In Range("A2", Range("A" & Rows.Count).End(xlUp))
If Cl.Value = "S.3" And Cl.Offset(, 11).Value = 0 Then
Cl.EntireRow.Hidden = True
ElseIf Not Cl.Value = "S.3" Then
Cl.EntireRow.Hidden = True
End If
Next Cl
Application.ScreenUpdating = True
End Sub
 
Upvote 0
This is what I have to start with


Excel 2013 32 bit
ABCDEFGHIJKL
1
2S.3$ 9.00
3S.3$ 5.00
4S.4$ 6.00
5S.3
6S.3
72.11$ 2.00
8S.3$11.00
Results



And this is what I end up with


Excel 2013 32 bit
ABCDEFGHIJKL
1
2S.3$ 9.00
3S.3$ 5.00
8S.3$11.00
Results
 
Upvote 0
Check that your S.3 values don't have any leading/trailing spaces.
 
Upvote 0
I checked for spaces but still getting the same result. it hides everything from row 1 to the last row containing S.3. Even many other rows above it that contain S.2, S.1 or blank. Any suggestions, i'm stumped.

Thank you very much for your help
 
Upvote 0
Do you have any merged cells?
If not would you be willing to share your file?
To do that you'll need to upload to OneDrive, DropBox or similar, mark for sharing & post a link to the thread.
 
Upvote 0

Forum statistics

Threads
1,214,643
Messages
6,120,702
Members
448,980
Latest member
CarlosWin

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