Highlight specific name

  • Thread starter Thread starter Juran
  • Start date Start date
J

Juran

I have a list of street names

Is there a way that when I enter in a particular cell the
street name (Main St.), all Main street on may list will be
highlighted?

Thank you for your help.

Juran
 
You could use Format|conditional formatting to highlight all the cells that
contain "main st." (not just highlight the characters "main st." themselves.

If A1 is your cell where you type the name:

Select the range that contains the addresses. (Say B2:B999)

Then with B2 the activecell:
format|conditional formatting
formula is:

=COUNTIF(B2,"*"&$A$1&"*")>0

And give it a nice format.
 
Dave,

Thank you for your help.

I did as your recommended, and on formating I ask to change
the color and put the street name in bold. Bun
unfortunately is not working.

Rubem
 
What was in one of those cells where you expected it to work?

What was in A1?

What did you use for your conditional formula?
 
On the cells, I have the street name.

Cell A1 is where I will enter the name of the stree I want
(Main St.)

I used formula and =COUNTIF(B2,"*"&$A$1&"*")>0

Then in format I chose the color, so when I type the name
of the street on cell A1, on my list all cells that contain
Main St. would be the color I selected.

Juran
 
This solution works,make sure all the cells in the range are selected
(e.g. B2:B) when inputing the conditional format.
 
Dave and Newsman,


The formula asked to use B* and A*,I forgot to adjust to my
needs.

Now it is working.

Thank you.



Juran
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top