+ Reply to Thread
Results 1 to 8 of 8

Values w/conditional formatting

  1. #1
    Fred Timmons
    Guest

    Values w/conditional formatting

    I am managing a do-not-call list with a large contact
    database. How do I establish a poitive/negative match
    from source data.
    eg. Cell D7 value is: 212-555-1212.
    The source worksheet has a list of all phone numbers in
    Column A.
    So, if the value of Cell D7 matches a value in source
    worksheet Column A, I can conditionally format it.
    Thanks in advance.

  2. #2
    Dave R.
    Guest

    Re: Values w/conditional formatting

    You can use the FORMULA IS option under conditional formatting. Use a
    formula like

    =COUNTIF($A$1:$A$999,B1)>0

    if you're referencing another worksheet, you must use indirect

    =COUNTIF(INDIRECT("Sheet1!$A$1:$A$999"),B1)>0



    "Fred Timmons" <[email protected]> wrote in message
    news:[email protected]...
    > I am managing a do-not-call list with a large contact
    > database. How do I establish a poitive/negative match
    > from source data.
    > eg. Cell D7 value is: 212-555-1212.
    > The source worksheet has a list of all phone numbers in
    > Column A.
    > So, if the value of Cell D7 matches a value in source
    > worksheet Column A, I can conditionally format it.
    > Thanks in advance.




  3. #3
    Bob Phillips
    Guest

    Re: Values w/conditional formatting

    Use conditional formatting with a formula of
    =ISNUMBER(MATCH($D$7,$A:$A,0))

    and select a colour for the format.

    If that source sheet is a different sheet to D7, then you will need to give
    the cells in column A a workbook name and refer to that in the formula.


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "Fred Timmons" <[email protected]> wrote in message
    news:[email protected]...
    > I am managing a do-not-call list with a large contact
    > database. How do I establish a poitive/negative match
    > from source data.
    > eg. Cell D7 value is: 212-555-1212.
    > The source worksheet has a list of all phone numbers in
    > Column A.
    > So, if the value of Cell D7 matches a value in source
    > worksheet Column A, I can conditionally format it.
    > Thanks in advance.




  4. #4
    Aladin Akyurek
    Guest

    Re: Values w/conditional formatting

    Just

    =MATCH($D$7,$A:$A,0)

    should suffice.

    Bob Phillips wrote:
    > Use conditional formatting with a formula of
    > =ISNUMBER(MATCH($D$7,$A:$A,0))
    >
    > and select a colour for the format.
    >
    > If that source sheet is a different sheet to D7, then you will need to give
    > the cells in column A a workbook name and refer to that in the formula.
    >
    >


  5. #5
    Bob Phillips
    Guest

    Re: Values w/conditional formatting

    I agree, but that depends upon an error always resolving as False. That is
    something that doesn't seem right to me, and so I prefer not to rely upon
    it.

    "Aladin Akyurek" <[email protected]> wrote in message
    news:[email protected]...
    > Just
    >
    > =MATCH($D$7,$A:$A,0)
    >
    > should suffice.
    >
    > Bob Phillips wrote:
    > > Use conditional formatting with a formula of
    > > =ISNUMBER(MATCH($D$7,$A:$A,0))
    > >
    > > and select a colour for the format.
    > >
    > > If that source sheet is a different sheet to D7, then you will need to

    give
    > > the cells in column A a workbook name and refer to that in the formula.
    > >
    > >




  6. #6
    John Smith
    Guest

    Re: Values w/conditional formatting

    Thank you. How would I repeat this conditional format for
    a series of cells (D7 to D500)?

    >-----Original Message-----
    >Use conditional formatting with a formula of
    >=ISNUMBER(MATCH($D$7,$A:$A,0))
    >
    >and select a colour for the format.
    >
    >If that source sheet is a different sheet to D7, then

    you will need to give
    >the cells in column A a workbook name and refer to that

    in the formula.
    >
    >
    >--
    >
    >HTH
    >
    >RP
    >(remove nothere from the email address if mailing direct)
    >
    >
    >"Fred Timmons" <[email protected]>

    wrote in message
    >news:[email protected]...
    >> I am managing a do-not-call list with a large contact
    >> database. How do I establish a poitive/negative match
    >> from source data.
    >> eg. Cell D7 value is: 212-555-1212.
    >> The source worksheet has a list of all phone numbers in
    >> Column A.
    >> So, if the value of Cell D7 matches a value in source
    >> worksheet Column A, I can conditionally format it.
    >> Thanks in advance.

    >
    >
    >.
    >


  7. #7
    John Smith
    Guest

    Re: Values w/conditional formatting

    Thank you. How would I repeat this conditional format for
    a series of cells (D7 to D500)?


    >-----Original Message-----
    >I agree, but that depends upon an error always resolving

    as False. That is
    >something that doesn't seem right to me, and so I prefer

    not to rely upon
    >it.
    >
    >"Aladin Akyurek" <[email protected]> wrote in message
    >news:[email protected]...
    >> Just
    >>
    >> =MATCH($D$7,$A:$A,0)
    >>
    >> should suffice.
    >>
    >> Bob Phillips wrote:
    >> > Use conditional formatting with a formula of
    >> > =ISNUMBER(MATCH($D$7,$A:$A,0))
    >> >
    >> > and select a colour for the format.
    >> >
    >> > If that source sheet is a different sheet to D7,

    then you will need to
    >give
    >> > the cells in column A a workbook name and refer to

    that in the formula.
    >> >
    >> >

    >
    >
    >.
    >


  8. #8
    Bob Phillips
    Guest

    Re: Values w/conditional formatting

    Select all the cells D7:D500, and then go into CF and use a formula of

    =ISNUMBER(MATCH($D7,$A:$A,0))

    i.e. row relative

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "John Smith" <[email protected]> wrote in message
    news:[email protected]...
    > Thank you. How would I repeat this conditional format for
    > a series of cells (D7 to D500)?
    >
    > >-----Original Message-----
    > >Use conditional formatting with a formula of
    > >=ISNUMBER(MATCH($D$7,$A:$A,0))
    > >
    > >and select a colour for the format.
    > >
    > >If that source sheet is a different sheet to D7, then

    > you will need to give
    > >the cells in column A a workbook name and refer to that

    > in the formula.
    > >
    > >
    > >--
    > >
    > >HTH
    > >
    > >RP
    > >(remove nothere from the email address if mailing direct)
    > >
    > >
    > >"Fred Timmons" <[email protected]>

    > wrote in message
    > >news:[email protected]...
    > >> I am managing a do-not-call list with a large contact
    > >> database. How do I establish a poitive/negative match
    > >> from source data.
    > >> eg. Cell D7 value is: 212-555-1212.
    > >> The source worksheet has a list of all phone numbers in
    > >> Column A.
    > >> So, if the value of Cell D7 matches a value in source
    > >> worksheet Column A, I can conditionally format it.
    > >> Thanks in advance.

    > >
    > >
    > >.
    > >




+ 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