MrExcel Message Board

Go Back   MrExcel Message Board > Question Forums > Excel Questions

Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only.

Reply
 
Thread Tools Display Modes
Old Mar 6th, 2002, 11:41 AM   #1
jeffmfrank
Board Regular
 
Join Date: Feb 2002
Location: Arizona
Posts: 72
Default

I'm a VBA rookie so I apologize if this is a simple procedure. What kind of code should I use to have a sheet automatically hide rows where the value in the column T for that row is "Y"? Can this always be running so that if "Y" changes to "N", the row is no longer hidden? Thanks.
jeffmfrank is offline   Reply With Quote
Old Mar 6th, 2002, 11:47 AM   #2
Steve Hartman
Board Regular
 
Steve Hartman's Avatar
 
Join Date: Feb 2002
Location: Houston,Texas
Posts: 418
Default

Does it have to be VBA? You could do this without VBA by using DATA VALIDATION.
__________________
Veni, Vidi, Velcro - I came, I saw, I stuck around

Taxation WITH representation ain't so hot either
Steve Hartman is offline   Reply With Quote
Old Mar 6th, 2002, 11:52 AM   #3
jeffmfrank
Board Regular
 
Join Date: Feb 2002
Location: Arizona
Posts: 72
Default

how, i'm all ears for suggestions. Thanks!
jeffmfrank is offline   Reply With Quote
Old Mar 6th, 2002, 12:07 PM   #4
Steve Hartman
Board Regular
 
Steve Hartman's Avatar
 
Join Date: Feb 2002
Location: Houston,Texas
Posts: 418
Default

Sorry, I meant Conditional formatting. Select the first cell of your first row of data. I'm assuming A1 for this example. Choose FORMAT > Conditional formatting.
Change Cell value is to Formula is and put =$T1="Y" in the formula box. then click on format and set the font color to the same as the background color for the cell. Click OK twice. Copy the cell and then paste Special Format to all the cells in that row you want to format.When there is a Y in column T the data in that row will be "invisible". You can copy the format to all the cells in your range.

This formula will only hide data when col T is = Y or y. If you only want it to be visible if the user puts an N in col T use =$T1<>"N" for the formula
__________________
Veni, Vidi, Velcro - I came, I saw, I stuck around

Taxation WITH representation ain't so hot either
Steve Hartman is offline   Reply With Quote
Old Mar 6th, 2002, 12:18 PM   #5
jeffmfrank
Board Regular
 
Join Date: Feb 2002
Location: Arizona
Posts: 72
Default

but I actually need to hide the rows, not just the text in the row. The formula in the T column recognizes that there is nothing in the row accomplished with my if statement retuning a "Y" (or "N" if there is somehthing in the row and it shouldn't be hidden - ie should be printed.)

I need the sheet to shrink down horizontally as much as possible automatically - not just hide the text from view. Sorry I should have clarified. I wish conditional formatting included "Hide Row" as a condition, but it doesn't seem to. Thanks for your suggestion, though.
jeffmfrank is offline   Reply With Quote
Old Mar 6th, 2002, 01:14 PM   #6
Barrie Davidson
MrExcel MVP
 
Barrie Davidson's Avatar
 
Join Date: Feb 2002
Location: Winnipeg
Posts: 2,330
Default

Quote:
On 2002-03-06 11:18, jeffmfrank wrote:
but I actually need to hide the rows, not just the text in the row. The formula in the T column recognizes that there is nothing in the row accomplished with my if statement retuning a "Y" (or "N" if there is somehthing in the row and it shouldn't be hidden - ie should be printed.)

I need the sheet to shrink down horizontally as much as possible automatically - not just hide the text from view. Sorry I should have clarified. I wish conditional formatting included "Hide Row" as a condition, but it doesn't seem to. Thanks for your suggestion, though.
Right click on your worksheet, select ViewCode and then paste this in to your sheet's code.

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
Select Case Range("T" & Target.Row).Value
Case Is = "Y"
Target.EntireRow.Hidden = True
Case Is = "N"
Target.EntireRow.Hidden = False
End Select
End Sub

Regards,

__________________
Barrie Davidson

"You're only given a little spark of madness. You mustn't lose it." - Robin Williams
Barrie Davidson is offline   Reply With Quote
Old Mar 6th, 2002, 01:46 PM   #7
jeffmfrank
Board Regular
 
Join Date: Feb 2002
Location: Arizona
Posts: 72
Default

thanks this is awesome and I think very close, but it only works if I manually enter "N" or "Y". The values "Y" and "N" in column T are determined when data is entered in another sheet. Should I have a Worksheet_Calculate instead of Worksheet_Change? How should I change this to work? Thanks again.
jeffmfrank is offline   Reply With Quote
Old Mar 6th, 2002, 01:57 PM   #8
Barrie Davidson
MrExcel MVP
 
Barrie Davidson's Avatar
 
Join Date: Feb 2002
Location: Winnipeg
Posts: 2,330
Default

Quote:
On 2002-03-06 12:46, jeffmfrank wrote:
thanks this is awesome and I think very close, but it only works if I manually enter "N" or "Y". The values "Y" and "N" in column T are determined when data is entered in another sheet. Should I have a Worksheet_Calculate instead of Worksheet_Change? How should I change this to work? Thanks again.
Well, you could try these two sets of code:
Code:
Private Sub Worksheet_Activate()
For Each c In Range("T1", Range("T65536").End(xlUp).Address)
    Select Case c.Value
    Case Is = "Y"
        c.EntireRow.Hidden = True
    Case Is = "N"
        c.EntireRow.Hidden = False
    End Select
Next c
End Sub

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
    Select Case Range("T" & Target.Row).Value
    Case Is = "Y"
    Target.EntireRow.Hidden = True
    Case Is = "N"
    Target.EntireRow.Hidden = False
    End Select
End Sub
Does this help you out?

__________________
Barrie Davidson

"You're only given a little spark of madness. You mustn't lose it." - Robin Williams
Barrie Davidson is offline   Reply With Quote
Old Mar 6th, 2002, 02:13 PM   #9
jeffmfrank
Board Regular
 
Join Date: Feb 2002
Location: Arizona
Posts: 72
Default

This works in the hide direction. But if I add data on the data sheet, I also need the code to recognize that the value in T (although hidden) has changed from "Y" to "N" and then unhide the row. Thanks.
jeffmfrank is offline   Reply With Quote
Old Mar 6th, 2002, 02:16 PM   #10
Steve Hartman
Board Regular
 
Steve Hartman's Avatar
 
Join Date: Feb 2002
Location: Houston,Texas
Posts: 418
Default

How about an Autofilter?
Steve Hartman is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 01:03 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
All contents Copyright 1998-2012 by MrExcel Consulting.
diabetic desserts recipes recipes Diabetic Soups Holiday Pizza Recipes Popcorn Recipes Recipes For Microwave Pasta Recipes Casserole Recipes Chili Recipes Curry Recipes Crockpot Recipes Apples Recipes Bread Recipes Vegetarian Recipes Vegetable recipes Desserts Recipes Appetizers Ethnic Recipes Meat Dishes Barbecue Recipes Sauces Recipes Marinade Recipes Low Fat Recipes Frugal Gourmet Kitchen Classics Recipes On The Grill Cook Books Seafood Recipes Cajun Recipes Breads Low Fat Low Fat Breads Bread Machine Recipes Yeast Breads Quick Breads Fat Free Vegetarian Salad Recipes Eggplant Recipes Radish Recipes Tomato Recipes Jalapeno Recipes Potato Recipes Lettuce Recipes Cabbage Recipes Beans Ambrosia Recipes Biscotti Recipes Desserts Low Fat Cookie Recipes Cheesecake Recipes Cake Recipes Pie Recipes Muffin Recipes Custard Recipes Best Appetizers Appetizers Low Fat Salsa Recipes Dip Recipes International Recipes Afghan Recipes Alaska Recipes French Recipes German Recipes Greek Recipes Italian Recipes Spanish Recipes Thai Recipes Korean Recipes Chinese Recipes Mexican Recipes Indian Recipes Beef Recipes Pork Pork & Ham Pork Butts Pork Chop Recipes Pork Ribs Rulled Pork Poultry Recipes Stews Recipes Ground Beef Barbecue Grill Barbecue Smoker All Purpose Sauce BBQ Sauce Barbecue Sauce Carolina BBQ Sauce Pickle Recipes Marinades Smoking Low Fat Appetizers & Dips Low Fat Breakfast Low Fat Cakes Low Fat Cheesecakes Low Fat Cookies Low Fat Desserts Low Fat Fish & Seafood Low Fat Meats Low Fat Pasta Low Fat Pies Low Fat Salads Low Fat Sandwiches Low Fat Sauces & Condiments Low Fat Sides Low Fat Soups Low Fat Vegetarian Baker's Dozen Taste of Home Recipe Book Bon Appetit Cookbook Blacktie Cookbook Buster Cook Book Cookbook USA Cook Book Cook Book Sara's Cookbook Sara's Cookbook Appetizers and Dips Poultry recipes Diabetic recipes Holiday recipes Miscellaneous recipes 110 recipes 1986 Usenet cookbook 2900 recipes Cyberrealm recipes Great sysops of world Specialty recipes Ceideburg recipes Cheese recipes Chili recipes Fruits recipes Garlic recipes Great chefs of NY Londontowne recipes Raisins recipes Recipes for kids US Food Vegetarian recipes Bread recipes Drinks Meat Dishes Brisket recipes Caribou recipes Chicken recipes Filet mignons recipes Pork recipes Swordfish recipes Turkey recipes Pasta recipes Uncategorized recipes Ethnic recipes Canada recipes English recipes Ethiopia recipes Germany recipes Greece recipes Mexican recipes Philippines recipes Welsh recipes Microwave recipes Soups recipes Vegetable recipes Asparagus recipes Barley recipes Brown rice recipes Lentil recipes Mushrooms recipes Salads recipes Wild rice Desserts recipes Cakes recipes Chocolate recipes Cookies recipes Ice cream recipes