How can I programs cells such that in case a hard input is used in a formula the cell turns red (using conditional formatting).
Hard input in a formula is:
"+" and any digit
"-" and any digit
"*" and any digit
"/" and any digit
Regards,
Frederik
How can I programs cells such that in case a hard input is used in a formula the cell turns red (using conditional formatting).
Hard input in a formula is:
"+" and any digit
"-" and any digit
"*" and any digit
"/" and any digit
Regards,
Frederik
You can define a function to return true if it contains one of those
characters, then use conditional formatting in that range to turn cells red
and reference the function, like
=SpecChar(A1) where A1 is the active cell when you use the conditional
formatting, and SpecChar is defined as:
Public Function SpecChar(rg) As Boolean
For Each thing In rg
If InStr(thing.Formula, "+") > 0 Or _
InStr(thing.Formula, "-") > 0 Or _
InStr(thing.Formula, "/") > 0 Or _
InStr(thing.Formula, "*") > 0 Then
SpecChar = True
Exit Function
End If
Next
End Function
"Frederik12" <Frederik12.24b7eo_1141751404.2943@excelforum-nospam.com> wrote
in message news:Frederik12.24b7eo_1141751404.2943@excelforum-nospam.com...
>
> How can I programs cells such that in case a hard input is used in a
> formula the cell turns red (using conditional formatting).
>
> Hard input in a formula is:
> "+" and any digit
> "-" and any digit
> "*" and any digit
> "/" and any digit
>
> Regards,
>
> Frederik
>
>
> --
> Frederik12
> ------------------------------------------------------------------------
> Frederik12's Profile:
http://www.excelforum.com/member.php...o&userid=32229
> View this thread: http://www.excelforum.com/showthread...hreadid=519791
>
Alternatively, you can use the following formula in CF (with the
FormulaIs option)
=AND(OR(LEFT(A1,1)={"+","-","*","/"}),LEN(A1)=2,ISNUMBER(VALUE(MID(A1,2,1))))
HTH
Kostis Vezerides
Bob,Originally Posted by Bob Umlas
thanks, but how do I define a function?
KR
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks