Tricky problem in Data validation - Excel 2003

S

smadhuranath

I've created an excel file in Excel 2003 for data entry by the ban
users and included some validation like max length, drop-down box, etc

There are certain columns which are mandatory, how can i enforce that
cell is not left blank?
How can i force that data entered is numerical only?

Any help will be greatly appreciated.

Thanks,
Sharat
 
G

Guest

There are certain columns which are mandatory, how can i enforce that a
cell is not left blank?

With a change event:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 2 Then '2 for column B, CHANGE as necessary
If IsEmpty(Target) Then
MsgBox "Mandatory!"
Application.EnableEvents = False
Target.Select
Application.EnableEvents = True
End If
End If
End Sub
How can i force that data entered is numerical only?
select say column B,
Validation/Custom/Formula: =ISNUMBER(B1)

Regards,
Stefi
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top