+ Reply to Thread
Results 1 to 4 of 4

Prevent Hard Inputs

  1. #1
    Registered User
    Join Date
    03-07-2006
    Posts
    2

    Question Prevent Hard Inputs

    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

  2. #2
    Bob Umlas
    Guest

    Re: Prevent Hard Inputs

    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
    >




  3. #3
    vezerid
    Guest

    Re: Prevent Hard Inputs

    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


  4. #4
    Registered User
    Join Date
    03-07-2006
    Posts
    2
    Quote Originally Posted by Bob Umlas
    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
    Bob,

    thanks, but how do I define a function?

    KR

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1