Macro for hiding rows

Mariesami

New Member
Joined
May 3, 2013
Messages
2
The general format I use for hiding rows is

If Range("G17") = 1 Then
Range("G22:G26").EntireRow.Hidden = True
Else
Range("G22:G26").EntireRow.Hidden = False
End If

In one particular case I want the rows to hide based on an embedded value (that is calculated rather than being entered or selected). This code doesn't work. Is there anything I should add?
 

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.
please upload a sample file with particular case on a sharing site, then paste the link here
 
Upvote 0
Hi, I'm sorry but I can't really do that now.

I'll try explaining better.
The criteria that I give for hiding the rows is not entered or selected.
For eg:

If Range("G17") = "Yes" Then
Range("G22:G26").EntireRow.Hidden = True
Else
Range("G22:G26").EntireRow.Hidden = False
End If

In the above condition, the 'Yes' criteria is not entered or selected. It depends on a combination of conditions and if the conditions are satisfied the cell G17 shows 'yes'. But the macro doesn't work.


 
Upvote 0

Forum statistics

Threads
1,223,277
Messages
6,171,148
Members
452,382
Latest member
RonChand

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