Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a way to write a code that will look for a column that is empty
/ blank? I.E. columns A3, B3, C3, D3 and E3 are filled with numbers and texts. It will skips the filled columns until it finds and select the empty column, in this case cell F3. Ogopogo5 *** Sent via Developersdex http://www.developersdex.com *** |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Adapt the following to your need
Sub findEmptyCell() ActiveSheet.Range("3:3").Select For Each cell In Selection If cell.Value = "" Then MsgBox cell.Address & " is the first blank cell in Row 3" Exit Sub End If Next End Sub "ogopogo5" wrote: Is there a way to write a code that will look for a column that is empty / blank? I.E. columns A3, B3, C3, D3 and E3 are filled with numbers and texts. It will skips the filled columns until it finds and select the empty column, in this case cell F3. Ogopogo5 *** Sent via Developersdex http://www.developersdex.com *** |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello Sheeloo
Thank you very much for helping out. I copied and pasted your code and it works. Ogopogo5 *** Sent via Developersdex http://www.developersdex.com *** |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Finding First Empty Cell in a Column | Excel Discussion (Misc queries) | |||
finding the next empty column | Excel Programming | |||
Finding Next Empty Cell in Column | Excel Programming | |||
Finding the first empty cell in a column | Excel Programming | |||
Finding last non-empty column in row... | Excel Programming |