#1   Report Post  
Posted to microsoft.public.excel.misc
ExcelBob
 
Posts: n/a
Default Here we go again....


Cell A1 contains the heading MONTH:

Cells A3:A41 contain the word "April"
Cells A42:A80 contain the word "May"
Cells A81:A119 contain the word "June"

etc all the way to March.

I want to put a pick list in cell A2 with the months April thru to
March and when you select a month it only returns the rows containing
that month.
ie if you pick April from the list it only displays rows 3:41
if you pick May from the list it displays rows 42:80 etc etc

Can anyone tell me how I can do this?

Help greatly appreciated


--
ExcelBob
------------------------------------------------------------------------
ExcelBob's Profile: http://www.excelforum.com/member.php...o&userid=34152
View this thread: http://www.excelforum.com/showthread...hreadid=545455

  #2   Report Post  
Posted to microsoft.public.excel.misc
CLR
 
Posts: n/a
Default Here we go again....

Data Filter AutoFilter click the arrow on column A and select "April"

When finished reviewing, do Data Filter AutoFilter again and it toggles
everything back to normal......

Vaya con Dios,
Chuck, CABGx3



"ExcelBob" wrote:


Cell A1 contains the heading MONTH:

Cells A3:A41 contain the word "April"
Cells A42:A80 contain the word "May"
Cells A81:A119 contain the word "June"

etc all the way to March.

I want to put a pick list in cell A2 with the months April thru to
March and when you select a month it only returns the rows containing
that month.
ie if you pick April from the list it only displays rows 3:41
if you pick May from the list it displays rows 42:80 etc etc

Can anyone tell me how I can do this?

Help greatly appreciated


--
ExcelBob
------------------------------------------------------------------------
ExcelBob's Profile: http://www.excelforum.com/member.php...o&userid=34152
View this thread: http://www.excelforum.com/showthread...hreadid=545455


  #3   Report Post  
Posted to microsoft.public.excel.misc
Arvi Laanemets
 
Posts: n/a
Default Here we go again....

Hi

Why not use autofilter (from DataFilter) - it does exactly what you want
(and even more)


--
Arvi Laanemets
( My real mail address: arvi.laanemets<attarkon.ee )



"ExcelBob" wrote in
message ...

Cell A1 contains the heading MONTH:

Cells A3:A41 contain the word "April"
Cells A42:A80 contain the word "May"
Cells A81:A119 contain the word "June"

etc all the way to March.

I want to put a pick list in cell A2 with the months April thru to
March and when you select a month it only returns the rows containing
that month.
ie if you pick April from the list it only displays rows 3:41
if you pick May from the list it displays rows 42:80 etc etc

Can anyone tell me how I can do this?

Help greatly appreciated


--
ExcelBob
------------------------------------------------------------------------
ExcelBob's Profile:
http://www.excelforum.com/member.php...o&userid=34152
View this thread: http://www.excelforum.com/showthread...hreadid=545455



  #4   Report Post  
Posted to microsoft.public.excel.misc
Pete_UK
 
Posts: n/a
Default Here we go again....

Why can't you use Autofilter for this? - Higlight column A then Data |
Filter | Autofilter (tick). You will have a pull-down arrow in A1 which
will present you with the list of available values in column A - no
need for A2 (you can delete this row if that is all you used it for).

Hope this helps.

Pete

  #5   Report Post  
Posted to microsoft.public.excel.misc
Arvi Laanemets
 
Posts: n/a
Default Here we go again....

Hi


"CLR" wrote in message
...
Data Filter AutoFilter click the arrow on column A and select
"April"

When finished reviewing, do Data Filter AutoFilter again and it
toggles
everything back to normal......



No need to remove autofilter. Simply click on arrow in Month column header
again, and select "Show All".


--
Arvi Laanemets
( My real mail address: arvi.laanemets<attarkon.ee )




  #6   Report Post  
Posted to microsoft.public.excel.misc
CLR
 
Posts: n/a
Default Here we go again....

Hi Arvi........
Actually, I just offered that as one way to get out of the
AutoFilter......in my own programs, I usually put a toggle-pushbutton above
the Freeze line and just use it to go into and out of the AutoFilter.

Vaya con Dios,
Chuck, CABGx3



"Arvi Laanemets" wrote:

Hi


"CLR" wrote in message
...
Data Filter AutoFilter click the arrow on column A and select
"April"

When finished reviewing, do Data Filter AutoFilter again and it
toggles
everything back to normal......



No need to remove autofilter. Simply click on arrow in Month column header
again, and select "Show All".


--
Arvi Laanemets
( My real mail address: arvi.laanemets<attarkon.ee )



  #7   Report Post  
Posted to microsoft.public.excel.misc
ExcelBob
 
Posts: n/a
Default Here we go again....


I want the default month to be April and all other months to be hidden
until selected from the list. I don't want the user to be able to
'show all' and I want the list to be in Month order as opposed to
alphabetcal order.

That's why Autofilter is not good enough.

I know it's more straightforward just to use Autofilter and be happy
with it but I would prefer it this way if anyone can work out how it
can be done!


Cheers Everyone


--
ExcelBob
------------------------------------------------------------------------
ExcelBob's Profile: http://www.excelforum.com/member.php...o&userid=34152
View this thread: http://www.excelforum.com/showthread...hreadid=545455

  #8   Report Post  
Posted to microsoft.public.excel.misc
ExcelBob
 
Posts: n/a
Default Here we go again....


so basically i want

all rows hidden (except rows 1 & 2)
default in a2 to be "april" (so it doesn't allow a blank)

if cell a2 = "april" show rows 3-41
if cell a2 = "may" show rows 42-80
if cell a2 = "june" show rows 81-11

etc

any magicians out there?


--
ExcelBob
------------------------------------------------------------------------
ExcelBob's Profile: http://www.excelforum.com/member.php...o&userid=34152
View this thread: http://www.excelforum.com/showthread...hreadid=545455

  #9   Report Post  
Posted to microsoft.public.excel.misc
CLR
 
Posts: n/a
Default Here we go again....

Running short on time here, but this code,(based on some supplied by Jim
Tomlinson) should help you get started.........

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$2" Then
If Target.Value = "april" Then Call April
If Target.Value = "may" Then Call May
If Target.Value = "june" Then Call June
End If
End Sub

Sub April()
Rows("2:112").Select
Selection.EntireRow.Hidden = False
Rows("42:80").Select
Selection.EntireRow.Hidden = True
Rows("81:111").Select
Selection.EntireRow.Hidden = True
Range("A2").Select
End Sub

Sub May()
Rows("2:112").Select
Selection.EntireRow.Hidden = False
Rows("3:41").Select
Selection.EntireRow.Hidden = True
Rows("81:111").Select
Selection.EntireRow.Hidden = True
Range("A2").Select
End Sub

Sub June()
Rows("2:112").Select
Selection.EntireRow.Hidden = False
Rows("3:41").Select
Selection.EntireRow.Hidden = True
Rows("42:80").Select
Selection.EntireRow.Hidden = True
Range("A2").Select
End Sub


hth
Vaya con Dios,
Chuck, CABGx3



"ExcelBob" wrote:


so basically i want

all rows hidden (except rows 1 & 2)
default in a2 to be "april" (so it doesn't allow a blank)

if cell a2 = "april" show rows 3-41
if cell a2 = "may" show rows 42-80
if cell a2 = "june" show rows 81-11

etc

any magicians out there?


--
ExcelBob
------------------------------------------------------------------------
ExcelBob's Profile: http://www.excelforum.com/member.php...o&userid=34152
View this thread: http://www.excelforum.com/showthread...hreadid=545455


  #10   Report Post  
Posted to microsoft.public.excel.misc
ExcelBob
 
Posts: n/a
Default Here we go again....


CLR

QUALITY!!! Just what I was after!

Many Many Thanks


--
ExcelBob
------------------------------------------------------------------------
ExcelBob's Profile: http://www.excelforum.com/member.php...o&userid=34152
View this thread: http://www.excelforum.com/showthread...hreadid=545455



  #11   Report Post  
Posted to microsoft.public.excel.misc
CLR
 
Posts: n/a
Default Here we go again....

Happy to help.....thanks for the feedback.

Vaya con Dios,
Chuck, CABGx3



"ExcelBob" wrote:


CLR

QUALITY!!! Just what I was after!

Many Many Thanks


--
ExcelBob
------------------------------------------------------------------------
ExcelBob's Profile: http://www.excelforum.com/member.php...o&userid=34152
View this thread: http://www.excelforum.com/showthread...hreadid=545455


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



All times are GMT +1. The time now is 04:16 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"