ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Hiding named rows (https://www.excelbanter.com/excel-programming/343444-hiding-named-rows.html)

Carrot[_2_]

Hiding named rows
 

Hi!

I'm trying to write code that will hide or show rows in one worksheet
depending on if their related info is displayed in another. The rows
want to show or hide are named, so I can easily reference them. But
I'm having problems refering to the rows in code. Rows are normall
referred to by their number, but shouldn't it be possible to refer t
them by name?

This is my code:


Code
-------------------

If Target.Column = 23 Then

Dim wrkSheet As Worksheet
Set wrkSheet = ActiveWorkbook.Worksheets("Sheet3")
Dim sRowName As String
'putting together the name of the row from the value of the referencing cell
sRowName = "ROW_" & Target.Cells.Value

'rows are hidden by default, show the appropriate one!
wrkSheet.Rows(sRowName).Hidden = False

End If

-------------------


This gives me a 'Type Mismatch' error, which implies that the Row
property can't accept string indexes. Anyone got a spare clue for me
:

--
Carro
-----------------------------------------------------------------------
Carrot's Profile: http://www.excelforum.com/member.php...fo&userid=2807
View this thread: http://www.excelforum.com/showthread.php?threadid=47819


K Dales[_2_]

Hiding named rows
 
Can't refer to them as Rows(RowName), but you can use the names like this:
ThisWorkbook.Names(sRowName).RefersToRange.Delete
- This will only work for deleting the row if the name refers to the entire
row; if not, then use
ThisWorkbook.Names(sRowName).RefersToRange.EntireR ow.Delete
--
- K Dales


"Carrot" wrote:


Hi!

I'm trying to write code that will hide or show rows in one worksheet,
depending on if their related info is displayed in another. The rows I
want to show or hide are named, so I can easily reference them. But,
I'm having problems refering to the rows in code. Rows are normally
referred to by their number, but shouldn't it be possible to refer to
them by name?

This is my code:


Code:
--------------------

If Target.Column = 23 Then

Dim wrkSheet As Worksheet
Set wrkSheet = ActiveWorkbook.Worksheets("Sheet3")
Dim sRowName As String
'putting together the name of the row from the value of the referencing cell
sRowName = "ROW_" & Target.Cells.Value

'rows are hidden by default, show the appropriate one!
wrkSheet.Rows(sRowName).Hidden = False

End If

--------------------


This gives me a 'Type Mismatch' error, which implies that the Rows
property can't accept string indexes. Anyone got a spare clue for me?
:)


--
Carrot
------------------------------------------------------------------------
Carrot's Profile: http://www.excelforum.com/member.php...o&userid=28073
View this thread: http://www.excelforum.com/showthread...hreadid=478192



Bernie Deitrick

Hiding named rows
 
Carrot,

Try changing:
wrkSheet.Rows(sRowName).Hidden = False
to
Range(sRowName).EntireRow.Hidden = False

HTH,
Bernie
MS Excel MVP


"Carrot" wrote in message
...

Hi!

I'm trying to write code that will hide or show rows in one worksheet,
depending on if their related info is displayed in another. The rows I
want to show or hide are named, so I can easily reference them. But,
I'm having problems refering to the rows in code. Rows are normally
referred to by their number, but shouldn't it be possible to refer to
them by name?

This is my code:


Code:
--------------------

If Target.Column = 23 Then

Dim wrkSheet As Worksheet
Set wrkSheet = ActiveWorkbook.Worksheets("Sheet3")
Dim sRowName As String
'putting together the name of the row from the value of the referencing cell
sRowName = "ROW_" & Target.Cells.Value

'rows are hidden by default, show the appropriate one!
wrkSheet.Rows(sRowName).Hidden = False

End If

--------------------


This gives me a 'Type Mismatch' error, which implies that the Rows
property can't accept string indexes. Anyone got a spare clue for me?
:)


--
Carrot
------------------------------------------------------------------------
Carrot's Profile: http://www.excelforum.com/member.php...o&userid=28073
View this thread: http://www.excelforum.com/showthread...hreadid=478192





All times are GMT +1. The time now is 09:01 AM.

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