Specifying that a cell has no value Numerical/text ?
Posted by Dominic on March 28, 2001 3:30 AM
Private Sub Workbook_BeforeClose(Cancel As Boolean)
On Error GoTo Lastline
If ActiveCell.Value = "" Then GoTo Saveline Else GoTo Lastline
Saveline:
Sheets("Data").Range("A4").Activate
Lastline:
End Sub
With the above code a "spacebar" entry has a value as well as text. How do I specify that the Cell must have no value whether it be text or numerical