View Single Post
  #3   Report Post  
lashio
 
Posts: n/a
Default

Hi Norman,
Thank you very much, that's what I needed.

"Norman Jones" wrote in message
...
Hi Lashio,

Try something like:

'=================
Public Sub FormulaTest()
If ActiveCell.HasFormula Then
'Do something, e.g.:
MsgBox "Cell " & ActiveCell.Address(0, 0) _
& " is a formula cell"
Else
'do something else, e.g.:
MsgBox "Cell " & ActiveCell.Address(0, 0) _
& " is not a formula cell"
End If
End Sub
'<<=================

---
Regards,
Norman



"lashio" wrote in message
...
Will someone help me write a macro to check if a selected cell contains
a formula. Please