ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Hide rows (https://www.excelbanter.com/excel-discussion-misc-queries/77680-hide-rows.html)

nc

Hide rows
 
Hi

I have functions in column A which returns a result of text or blank ( i.e.
"" ).
I woul like to run a macro that hides the rows with a blank ( i.e. "" ) cell
in column A. Please help.

Ardus Petus

Hide rows
 
Sub HideEmpty()
Dim cell As Range
For Each cell In Range( _
Cells(1, "A"), _
Cells(Rows.Count, "A").End(xlUp) _
)
If cell.Value = "" Then _
cell.EntireRow.Hidden = True
Next cell
End Sub

HTH
--
AP

"nc" a écrit dans le message de
...
Hi

I have functions in column A which returns a result of text or blank (

i.e.
"" ).
I woul like to run a macro that hides the rows with a blank ( i.e. "" )

cell
in column A. Please help.




nc

Hide rows
 
Hi Ardus

Thanks for this macro.

I have list of text. How can I find the position that list end and from
then hide the rows to a psecific row number?

Thanks.

"Ardus Petus" wrote:

Sub HideEmpty()
Dim cell As Range
For Each cell In Range( _
Cells(1, "A"), _
Cells(Rows.Count, "A").End(xlUp) _
)
If cell.Value = "" Then _
cell.EntireRow.Hidden = True
Next cell
End Sub

HTH
--
AP

"nc" a écrit dans le message de
...
Hi

I have functions in column A which returns a result of text or blank (

i.e.
"" ).
I woul like to run a macro that hides the rows with a blank ( i.e. "" )

cell
in column A. Please help.






All times are GMT +1. The time now is 02:40 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com