Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
Is it somehow possible to check if a row's been inserted? Is there any construct of code or do I need to loop through a field and check that 'manually'? thanks for help masterphilch |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
M,
Name the range and check the Rows.Count. Jim Cone San Francisco, USA http://www.realezsites.com/bus/primitivesoftware "masterphilch" wrote in message Hi Is it somehow possible to check if a row's been inserted? Is there any construct of code or do I need to loop through a field and check that 'manually'? thanks for help masterphilch |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
thanks for that hint!
could it be possible to determine the start- and endrow of that named range? thanks for reply Jim Cone schrieb: M, Name the range and check the Rows.Count. Jim Cone San Francisco, USA http://www.realezsites.com/bus/primitivesoftware "masterphilch" wrote in message Hi Is it somehow possible to check if a row's been inserted? Is there any construct of code or do I need to loop through a field and check that 'manually'? thanks for help masterphilch |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
One way:
Dim nStartRow As Long Dim nEndRow As Long With Range("MyRange") nStartRow = .Item(1).Row nEndRow = .Item(.Count).Row End With In article , masterphilch wrote: could it be possible to determine the start- and endrow of that named range? |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
m,
With Range("PhilchArea") MsgBox .Rows(1).Row & " is the first row. " MsgBox .Rows(.Rows.Count).Row & " is the last row. " End With Jim Cone San Francisco, USA "masterphilch" wrote in message thanks for that hint! could it be possible to determine the start- and endrow of that named range? thanks for reply Jim Cone schrieb: M, Name the range and check the Rows.Count. Jim Cone San Francisco, USA http://www.realezsites.com/bus/primitivesoftware "masterphilch" wrote in message Hi Is it somehow possible to check if a row's been inserted? Is there any construct of code or do I need to loop through a field and check that 'manually'? thanks for help masterphilch |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
thanks a lot!
JE McGimpsey schrieb: One way: Dim nStartRow As Long Dim nEndRow As Long With Range("MyRange") nStartRow = .Item(1).Row nEndRow = .Item(.Count).Row End With In article , masterphilch wrote: could it be possible to determine the start- and endrow of that named range? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Workbook_SheetChange not working | Excel Programming | |||
Workbook_SheetChange | Excel Programming | |||
Workbook_sheetChange event | Excel Programming | |||
workbook_sheetchange | Excel Programming | |||
Workbook_SheetChange will not fire | Excel Programming |