Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I set the number of rows on opening a file but when I detect a change in a
sheet, the number of rows is empty. Help please! The code for ThisWorkbook: Public NrowsSt As Integer Private Sub Workbook_Open() NrowsSt = Range("MyRange").Rows.Count MsgBox NrowsSt End Sub The code for Sheet1: Private Sub Worksheet_Change(ByVal Target As Range) MsgBox NrowsSt Nrows = Range("MyRange").Rows.Count If Nrows < NrowsSt Then If Nrows NrowsSt Then MsgBox "No of rows inserted =" & Nrows - NrowsSt Else MsgBox "No of rows deleted =" & NrowsSt - Nrows End If End If End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Storing a value to variable | Excel Discussion (Misc queries) | |||
Storing variable in Option.Tag | Excel Programming | |||
Storing a range in a variable | Excel Programming | |||
Storing value in a variable from a cell | Excel Programming |