Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
try this
Function ISFORMULA(cel As Range) As Boolean ISFORMULA = cel.HasFormula End Function Sub testforformula() If ISFORMULA(Range("A1")) Then MsgBox "Has formula" Else MsgBox "Has no formula" End If End Sub "JH" wrote: Can someone please show me how to test whether the cell is a formula or a constant in VBA? say in A1, if I entered a formula, '=D4*E1', msgbox will pop up and say it is formula, and if I entered a value '1000', it pops up and say it is a value. Thanks! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Testing the results of a formula for zero | Excel Discussion (Misc queries) | |||
Testing for existence of a formula | Excel Worksheet Functions | |||
Formula Constant | Excel Worksheet Functions | |||
Constant in Formula | Excel Programming | |||
Constant Value in formula. | Excel Worksheet Functions |