Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hallo,
Can you please provide some assistance? I have the following code in a worksheet (Register), if the value in Column H is "Closed" I am hiding the row in the WorkSheet (Register). At the same time I want to copy the hidden row to another sheet (Closed Issues). Private Sub Worksheet_SelectionChange(ByVal Target As Range) Dim lngRow As Long Application.ScreenUpdating = False For lngRow = 5 To lastRow If Range("H" & lngRow).Value = "Closed" Then Rows(lngRow + 0).Hidden = True Else Rows(lngRow + 0).Hidden = False End If Next Application.ScreenUpdating = False End Sub Can this be done? Thanks in advance for your support. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copy an entire row based on value in one cell | Excel Programming | |||
Help: auto-copy entire rows from 1 sheet (based on cell criteria) to another sheet. | Excel Programming | |||
Copy entire row to another sheet based on a criteria | Excel Discussion (Misc queries) | |||
copy and insert entire row based on integer in column A | Excel Programming | |||
Formatting an entire row based on one cell | Excel Worksheet Functions |