View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
J.E. McGimpsey J.E. McGimpsey is offline
external usenet poster
 
Posts: 493
Default Validating a Formula

One way:

Put this in the worksheet code module


Private Sub Worksheet_Calculate()
If Range("C132").Value 65 Then MsgBox "C132 65"
End Sub

You might also consider using Conditional Formatting to change the
cell color instead.

In article ,
"Cath" wrote:

I am trying to validate a cell that has a formula in it.

i.e. c132=sumc1:c131

i need to have an error message appear in the sum of c132
is greater than 65. i can get the validation to work on a
cell that has a number entered directly but cannot get it
to work on a cell that has a formula.