Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks for the reply
Sorry for my ignorance, I don't know where to enter this in. I assume this is VB ----- Mark Henri wrote: ---- I want to set up my Excel form so that when the user is finished enterin the data, Excel hides columns/rows that don't have data in them. Fo example, if I set it up for 10 rows, but the user only needs 4 rows, the would hit a button (triggering a macro) and the 6 unused rows would b hidden (or deleted. Try something like this- Private Sub HideRows( Dim c As Rang Application.ScreenUpdating = Fals Application.Calculation = xlCalculationManua For Each c In Range("a10:a20" If c.Value = 0 The c.EntireRow.Hidden = Tru Els c.EntireRow.Hidden = Fals End I Next Application.Calculation = xlCalculationAutomati Application.ScreenUpdating = Tru End Su |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
auto hide data | New Users to Excel | |||
auto hide | Excel Discussion (Misc queries) | |||
Auto Hide Columns when... | Excel Discussion (Misc queries) | |||
How to auto hide an empty row with VBA? | Excel Programming | |||
auto hide unhide | Excel Programming |