tricky one eh??

pra

New Member
Joined
May 2, 2002
Messages
4
how do I conditionally hide a row? for example if b5="Jack" then the entire row should be hidden. Pls help.. Thanks in advance
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
On 2002-05-03 11:04, pra wrote:
how do I conditionally hide a row? for example if b5="Jack" then the entire row should be hidden. Pls help.. Thanks in advance

In a sheet module, use wither a worksheet_change or a worksheet_selectionchange event

Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
If Range("B5") = "Jack" Then
Rows(5).Hidden = True
Else
Rows(5).Hidden = False
End If
End Sub

EDIT:

Please don't start a new thread with the same question.

Also, please allow some time before you post and then repost. 7 whole minutes elapsed before your first request until the second one. Be reasonable. Not everybody can be your personal Excel consultant. :) A little patience for you! :biggrin:
This message was edited by Jay Petrulis on 2002-05-03 11:43
 
Upvote 0
Jay is right....please don't restart
another thread...otherwise people will
waste there time.....I just queried another
one of your Q above and now find that Jay
has answered you. :-0
 
Upvote 0

Forum statistics

Threads
1,213,534
Messages
6,114,185
Members
448,554
Latest member
Gleisner2

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