Microsoft Excel Question: Download MS Excel PDF

How do I find the first empty cell in column A?

Tweet Share WhatsApp

Answer:

If ActiveSheet.UsedRange.Count < 2 Then
MsgBox 1
Else
MsgBox Columns("A:A").Find(What:="", LookAt:=xlWhole).Row
End If

Download MS Excel PDF Read All 143 MS Excel Questions
Previous QuestionNext Question
Is it possible to change the color and font of the sheet tabs?How can I unprotect a VBA project using code?