Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Looney
 
Posts: n/a
Default Hiding Rows using conditions

Is it possible to hide a row based upon a value one of the columns?

Thank you.
Jeff R.
  #2   Report Post  
Gord Dibben
 
Posts: n/a
Default

Jeff

You may get away with a filter, either auto or advanced to hide rows.

Or you may need VBA code, either event or menu/button driven.

Sub Hide_Rows()
'using set column A
Dim RngCol As Range
Dim i As Range
Set RngCol = Range("A1", Range("A" & Rows.Count). _
End(xlUp).Address)
For Each i In RngCol
If i.Value = "yours" Then _
i.EntireRow.Hidden = True
Next i
End Sub

In any case, if you're wondering, hiding a row is not a feature of Conditional
Formatting.


Gord Dibben Excel MVP

On Mon, 15 Aug 2005 15:33:03 -0700, Looney
wrote:

Is it possible to hide a row based upon a value one of the columns?

Thank you.
Jeff R.


  #3   Report Post  
Bob Phillips
 
Posts: n/a
Default

Only with VBA? Is that okay If so, give some details.


--

HTH

RP
(remove nothere from the email address if mailing direct)


"Looney" wrote in message
...
Is it possible to hide a row based upon a value one of the columns?

Thank you.
Jeff R.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Hiding rows based on choice in a listbox robhargreaves Excel Discussion (Misc queries) 1 July 24th 05 12:58 PM
Hiding of rows and columns srinivasan Excel Discussion (Misc queries) 1 July 21st 05 08:59 AM
HIDING ROWS IN PROTECTED WORKSHEETS kyoung Excel Discussion (Misc queries) 2 June 9th 05 05:17 AM
Hiding Rows if the linked rows are blank KG Excel Discussion (Misc queries) 9 May 18th 05 02:32 AM
Copying Rows when hiding other rows Neutron1871 Excel Worksheet Functions 2 November 3rd 04 11:38 PM


All times are GMT +1. The time now is 08:17 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"