D Dick Kusleika Oct 18, 2004 #2 WM I believe the ColumnWidth property will be zero if it's hidden If Range("A1").ColumnWidth = 0 Then You could also check that either the row or column for that range were hidden Range("A1").EntireRow.Hidden Or Range("a1").EntireColumn.Hidden but I can't think why ColumnWidth wouldn't work, so I'd probably use that one.
WM I believe the ColumnWidth property will be zero if it's hidden If Range("A1").ColumnWidth = 0 Then You could also check that either the row or column for that range were hidden Range("A1").EntireRow.Hidden Or Range("a1").EntireColumn.Hidden but I can't think why ColumnWidth wouldn't work, so I'd probably use that one.