Thread: macro
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] naeemsbp@gmail.com is offline
external usenet poster
 
Posts: 1
Default macro

Dear

Ihave macro below i want to run this when i enter data in cell "D10"
please help

Sub macro2()

Dim varAnswer As String
varAnswer = MsgBox("please insure that all data is i
thousands?", vbYesNo, "Warning")
If varAnswer = vbNo Then
Exit Sub
End If


End Sub