Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I currently have a workbook with two worksheets. I need a formula that
returns the row number from the second worksheet of the first unused row. I need this value to be displayed in a cell on the first worksheet. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
just match a number larger than possible in your column
=MATCH(999999999,nameofotherworksheet!B:B)+1 -- Don Guillett SalesAid Software "cvach" wrote in message oups.com... I currently have a workbook with two worksheets. I need a formula that returns the row number from the second worksheet of the first unused row. I need this value to be displayed in a cell on the first worksheet. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I did this and I recieved and error message # N/A
|
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
LastRow = Cells(Rows.Count, 1).End(xlUp).Row
(where is the column to search 1=A, 2=B etc) Glen |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
forgot.
LastRow = sheets("MySheet).Cells(Rows.Count, 1).End(xlUp).Row Glen |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
for letters use "zzzzzzzzzzzz". If still a problem, you have nothing in the
column. -- Don Guillett SalesAid Software "cvach" wrote in message oups.com... I did this and I recieved and error message # N/A |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
LOOKUP problems | Excel Worksheet Functions | |||
Problems with LOOKUP | Excel Worksheet Functions | |||
Lookup problems | Excel Worksheet Functions | |||
Lookup problems | Excel Worksheet Functions | |||
Lookup problems | Excel Programming |