T
teepee
Hello
I want to find the first and second blank cells in a column and return both
their values as variables I can then program with. Anyone know how? I got as
far as:
If ActiveSheet.UsedRange.Count < 2 Then
MsgBox 1
Else
MsgBox Columns("A:A").Find(What:="", LookAt:=xlWhole).Row
' Cells.FindNext(After:=ActiveCell).Activate
End If
which returns just the first blank cell but as a messagebox.
Any help much appreciated
I want to find the first and second blank cells in a column and return both
their values as variables I can then program with. Anyone know how? I got as
far as:
If ActiveSheet.UsedRange.Count < 2 Then
MsgBox 1
Else
MsgBox Columns("A:A").Find(What:="", LookAt:=xlWhole).Row
' Cells.FindNext(After:=ActiveCell).Activate
End If
which returns just the first blank cell but as a messagebox.
Any help much appreciated