Excel Macro Hiding Rows with single predefined Condition

VictorOpokin

New Member
Joined
Aug 14, 2013
Messages
9
Dear experts, could you please kindly help with the following Excell challenge.
In my spreadsheet I need to have an option to automatically hide all the rows, where formula results in the "Hide" text. Just to highlight, all the cells are with formulas, not text.
What code can do this?
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Hope this helps…

This is a VBA solution to your request. If you need a formula, then you should specify that in the request.

Install instructions:

  • Open a copy of your Excel application for testing.
  • Go into development mode (alt F11)
  • Create a Module (Insert | Module)
  • Copy and paste the code into the module (usual way)
  • Save the file (Ctrl S)
  • Exit development mode (Alt F11)
  • Have the sheet that is the target for the row “hiding” displayed (active)
  • Run the macro hideFormula (Alt F8 | Select | Run)
  • Test
  • Let me know the results

Code:
Sub hideFormula()
    Dim cCell
    On Local Error Resume Next
    For Each cCell In ActiveSheet.Cells.SpecialCells(xlCellTypeFormulas).Cells
        If cCell.Text = "Hide" Then Rows(cCell.Row).EntireRow.Hidden = True
    Next cCell
End Sub
 
Upvote 0
Thank you! It works perfectly fine. Exactly what was required.
May I use your experience a little bit more and ask for an advice on how to automate unhiding of the rows? And is it possible to modify the code in order to run it from other active spreadsheet for the specific one? I mean, to run the code from an active main sheet for another one called "Summary".
Thank you!
 
Last edited:
Upvote 0
May I use your experience a little bit more and ask for an advice on how to automate unhiding of the rows?

Do you want to "unhide" all the hidden rows or only those hidden by this macro?

to run the code from an active main sheet for another one called "Summary"
Code:
Sub hideFormula()
    Dim cCell
    On Local Error Resume Next
    For Each cCell In Sheets("Summary").Cells.SpecialCells(xlCellTypeFormulas).Cells
        If cCell.Text = "Hide" Then Sheets("Summary").Rows(cCell.Row).EntireRow.Hidden = True
    Next cCell
End Sub
 
Upvote 0
OK, here's the deal.

This code will do what you want, except if:

  • hideFormula is run and it hides some rows
  • An outside process changes one of the cells (that caused a row to be hidden) to something other than "Hide"
  • UnhideFormula will not "unhide" that row

If this is a problem, then a more complicated solution is required.

Code:
Sub UnhideFormula()
    Dim cCell
    On Local Error Resume Next
    For Each cCell In Sheets("Summary").Cells.SpecialCells(xlCellTypeFormulas).Cells
        If cCell.Text = "Hide" Then Sheets("Summary").Rows(cCell.Row).EntireRow.Hidden = False
    Next cCell
End Sub
 
Upvote 0
Thank you. It works perfectly, when unhiding previosely hidden rows.
But is it possible to have a code unhiding all the rows, independently of text in it?
 
Upvote 0
Hope this helps…

This is a VBA solution to your request. If you need a formula, then you should specify that in the request.

Install instructions:

  • Open a copy of your Excel application for testing.
  • Go into development mode (alt F11)
  • Create a Module (Insert | Module)
  • Copy and paste the code into the module (usual way)
  • Save the file (Ctrl S)
  • Exit development mode (Alt F11)
  • Have the sheet that is the target for the row “hiding” displayed (active)
  • Run the macro hideFormula (Alt F8 | Select | Run)
  • Test
  • Let me know the results

Code:
Sub hideFormula()
    Dim cCell
    On Local Error Resume Next
    For Each cCell In ActiveSheet.Cells.SpecialCells(xlCellTypeFormulas).Cells
        If cCell.Text = "Hide" Then Rows(cCell.Row).EntireRow.Hidden = True
    Next cCell
End Sub

Is it possible to amend the above code with the following functions?
1. I have 2 activeX option buttons. I need the code to hide the required rows (what it is already doing perfectly well) and select the option button called OptionButton1.
2. Go to the Spreadsheet called "Letter".

Thank you in advance!
 
Upvote 0
I think you want to set the OptionButton1 to true rather than select it.

Here’s some code to get you started.

Code:
ActiveSheet.OptionButton1.Value = True
ThisWorkbook.Sheets("Letter").Activate
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,751
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