Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default macro to hide all rows that have a cell value of "complete"

Hello all, I wonder if it is possible to create a macro that would toggle
rows from hidden to unhidden? I would like the button to hide all rows that
have a particular cell as "complete". If this requires 2 seperate buttons
that is not a problem.
I think i may need to have a range in for the row (A1 to M1 for example) as
i have some data already hidden beyond M1 (used in drop down lists).

any help would be much appreciated.

thanks


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default macro to hide all rows that have a cell value of "complete"

hi Tom, i think i can just hide the whole row?
I thought that if i did a hide command on that row then did unhide; the data
that is hidden on the far right of the sheet (used in drop down lists).
But it seems that these hidden lists are not affected.

I have tried your code, but i am unsure if i am applying it correctly?
I have pasted it into VBA editor and then created a macro button and
assigned it to the button.

When i click the macro button nothing appears to happen.

Where am i going wrong?
Sorry as you can see i am very novice :-(







"Tom Ogilvy" wrote:

A2 to Q2 is a single row??? Maybe you meant hide columns although it seems
unlikely:

Sub CommandButton1_Click()
Dim c As Range
For Each c In ActiveSheet.Range("A2:Q2")
If c.Value = "Complete" Then
With c.EntireColumn
.Hidden = Not .Hidden
End With
End If
Next c
End Sub

Please clarify what you want.

--
Regards,
Tom Ogilvy


"Maax" wrote:

Hi Vergel,

many thanks for your reply. However i can not make it work.
i want each row to be hidden in this range A2 to Q2

i entered your code using the VBA option and assigned it to a button but its
not doing anything?




"Vergel Adriano" wrote:

As an example, the following code will hide/unhide rows where the cell in
column A has "Complete"

Sub toggle_hidden_rows()
Dim c As Range
For Each c In ActiveSheet.Range("A1:A100")
If c.Value = "Complete" Then
With c.EntireRow
.Hidden = Not .Hidden
End With
End If
Next c
End Sub


--
Hope that helps.

Vergel Adriano


"Maax" wrote:

Hello all, I wonder if it is possible to create a macro that would toggle
rows from hidden to unhidden? I would like the button to hide all rows that
have a particular cell as "complete". If this requires 2 seperate buttons
that is not a problem.
I think i may need to have a range in for the row (A1 to M1 for example) as
i have some data already hidden beyond M1 (used in drop down lists).

any help would be much appreciated.

thanks


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
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell Steve Kay Excel Discussion (Misc queries) 2 August 8th 08 01:54 AM
"Print titles must be contiguos and complete rows or columns?" Juan Diaz L Excel Discussion (Misc queries) 1 January 24th 08 04:47 PM
macro to hide all rows that have a cell value of "complete" Vergel Adriano Excel Programming 0 March 28th 07 02:43 AM
macro to hide all rows that have a cell value of "complete" Maax Excel Programming 1 March 28th 07 02:19 AM
Using Macro to hide rows that have a "0" quantity value Neil Excel Programming 4 October 27th 06 06:22 PM


All times are GMT +1. The time now is 08:58 PM.

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"