ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Hide row if cell is empty (https://www.excelbanter.com/excel-programming/338481-hide-row-if-cell-empty.html)

Qaspec

Hide row if cell is empty
 
On a button click I'd like to hide row 4 if a4 is empty. I'd like to this up
to row 20 if the correspondince cell to that row in column a is empty. Thanks.

Tom Ogilvy

Hide row if cell is empty
 
Sub HideRows()
range("A1:A20").Entirerow.Hidden = False
on Error resume Next
set rng = Range("A1:A20").specialCells(xlblanks)
On Error goto 0
if not rng is nothing then
rng.Entirerow.Hidden = True
End if
End Sub

Assume no merged cells.

--
Regards,
Tom Ogilvy


"Qaspec" wrote in message
...
On a button click I'd like to hide row 4 if a4 is empty. I'd like to this

up
to row 20 if the correspondince cell to that row in column a is empty.

Thanks.



sebastienm

Hide row if cell is empty
 
Hi,
The following code should work fine:
'---------------------------------------------------
Sub HideTheRows()
HideRowsForBlanks Range("A1:A20")
HideRowsForBlanks Range("A25:A30,A35")
End Sub

Sub HideRowsForBlanks(Rg As Range)
Dim cell As Range, rgToHide As Range

'build empty-cell range
For Each cell In Rg.Cells
If cell.Text = "" Then
If rgToHide Is Nothing Then
Set rgToHide = cell
Else
Set rgToHide = Application.Union(rgToHide, cell)
End If
End If
Next

'Hide
If Not rgToHide Is Nothing Then
rgToHide.EntireRow.Hidden = True
End If

End Sub
'------------------------------------------------
--
Regards,
Sébastien
<http://www.ondemandanalysis.com


"Qaspec" wrote:

On a button click I'd like to hide row 4 if a4 is empty. I'd like to this up
to row 20 if the correspondince cell to that row in column a is empty. Thanks.



All times are GMT +1. The time now is 10:21 AM.

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