Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Please help: How can i programmatically lookup the cell adress for nex non-blank cell in a range? Toreador -- toreador ----------------------------------------------------------------------- toreadore's Profile: http://www.excelforum.com/member.php...fo&userid=3585 View this thread: http://www.excelforum.com/showthread.php?threadid=55640 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
The UDF returns the cell address of the first non-blank cell in a range:
Function nonblank(R As Range) As String Dim rr As Range nonblank = "" For Each rr In R If IsEmpty(rr.Value) Then Else nonblank = rr.Address Exit Function End If Next End Function -- Gary's Student "toreadore" wrote: Please help: How can i programmatically lookup the cell adress for next non-blank cell in a range? Toreadore -- toreadore ------------------------------------------------------------------------ toreadore's Profile: http://www.excelforum.com/member.php...o&userid=35850 View this thread: http://www.excelforum.com/showthread...hreadid=556409 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() toreadore Wrote: Please help: How can i programmatically lookup the cell adress for next non-blank cell in a range? Toreadore Great! Thanx! -- toreadore ------------------------------------------------------------------------ toreadore's Profile: http://www.excelforum.com/member.php...o&userid=35850 View this thread: http://www.excelforum.com/showthread...hreadid=556409 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Average Formula to display blank cell if named range is blank | Excel Worksheet Functions | |||
How can I make a blank cell in a formula cell with a range of cell | Excel Discussion (Misc queries) | |||
Return cell adress for next non-blank cell in a range | Excel Worksheet Functions | |||
Is it possible to use a cell adress that is typed in a cell? | Excel Worksheet Functions | |||
I need to determine a cell range based on a blank cell | Excel Programming |