Thread
:
Find first Empty Cell in a row
View Single Post
#
2
Posted to microsoft.public.excel.programming
Rick Rothstein
external usenet poster
Posts: 5,934
Find first Empty Cell in a row
FirstBlankCellInColumnC = Cells(1, "C").End(xlDown).Row + 1
--
Rick (MVP - Excel)
"Scott R" <Scott
wrote in message ...
I have a spreadsheet where each row has a varying number filled cells. I
want to find the first empty cell in the row. I tried searching for the
first cell with a value equal to 'Empty'. However, this sees a 0 and an
empty cell as the same. How do I find the cell that is empty (not populated
with a zero value)?
Reply With Quote
Rick Rothstein
View Public Profile
Find all posts by Rick Rothstein