PC Review


Reply
Thread Tools Rate Thread

Conditional Formatting to Show Red Highlight in Text Field

 
 
Daren
Guest
Posts: n/a
 
      23rd Feb 2009
Hello. I have text values in column D that contain the word Saturday. I
need a conditional format that turns the cells red to use in column D to find
those cells that contain Saturday. I think a formula can be used in
conditional formatting but I am unsure what it can be. How can I do this?
Thanks.
 
Reply With Quote
 
 
 
 
Fred Smith
Guest
Posts: n/a
 
      23rd Feb 2009
What's wrong with a conditional format of:
Value is: Saturday
Format: red color
?

Regards,
Fred.

"Daren" <(E-Mail Removed)> wrote in message
news:63FCCF3A-D13A-4925-BF1A-(E-Mail Removed)...
> Hello. I have text values in column D that contain the word Saturday. I
> need a conditional format that turns the cells red to use in column D to
> find
> those cells that contain Saturday. I think a formula can be used in
> conditional formatting but I am unsure what it can be. How can I do this?
> Thanks.


 
Reply With Quote
 
Luke M
Guest
Posts: n/a
 
      23rd Feb 2009
To clarify, you want all cells in column D that say "Saturday" to have red
background?

Format-Condition Format, Cell value is equal to "Saturday". Choose red
pattern.

Or, if you wanted a corresponding column to change color
Formula is:
=D1="Saturday"
and then pick pattern, and copy cell down as desired.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Daren" wrote:

> Hello. I have text values in column D that contain the word Saturday. I
> need a conditional format that turns the cells red to use in column D to find
> those cells that contain Saturday. I think a formula can be used in
> conditional formatting but I am unsure what it can be. How can I do this?
> Thanks.

 
Reply With Quote
 
Daren
Guest
Posts: n/a
 
      23rd Feb 2009
I tried that but it did not take, and I think that is due to the fact that
there are other words in the cell, such as The First (Saturday). Is there a
way to get around this? Thanks.

"Fred Smith" wrote:

> What's wrong with a conditional format of:
> Value is: Saturday
> Format: red color
> ?
>
> Regards,
> Fred.
>
> "Daren" <(E-Mail Removed)> wrote in message
> news:63FCCF3A-D13A-4925-BF1A-(E-Mail Removed)...
> > Hello. I have text values in column D that contain the word Saturday. I
> > need a conditional format that turns the cells red to use in column D to
> > find
> > those cells that contain Saturday. I think a formula can be used in
> > conditional formatting but I am unsure what it can be. How can I do this?
> > Thanks.

>
>

 
Reply With Quote
 
Daren
Guest
Posts: n/a
 
      23rd Feb 2009
Not totally...the cells in column D can also have other words in it, such as
The First (Saturday). I want the conditional format to show red whenever the
word Saturday appears in the cell regardless of how many other different
words there are. Do you know how to do this? Thanks.

"Luke M" wrote:

> To clarify, you want all cells in column D that say "Saturday" to have red
> background?
>
> Format-Condition Format, Cell value is equal to "Saturday". Choose red
> pattern.
>
> Or, if you wanted a corresponding column to change color
> Formula is:
> =D1="Saturday"
> and then pick pattern, and copy cell down as desired.
> --
> Best Regards,
>
> Luke M
> *Remember to click "yes" if this post helped you!*
>
>
> "Daren" wrote:
>
> > Hello. I have text values in column D that contain the word Saturday. I
> > need a conditional format that turns the cells red to use in column D to find
> > those cells that contain Saturday. I think a formula can be used in
> > conditional formatting but I am unsure what it can be. How can I do this?
> > Thanks.

 
Reply With Quote
 
Luke M
Guest
Posts: n/a
 
      23rd Feb 2009
Ah.
formula for CF is
=ISNUMBER(SEARCH("Saturday",D1))
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Daren" wrote:

> Not totally...the cells in column D can also have other words in it, such as
> The First (Saturday). I want the conditional format to show red whenever the
> word Saturday appears in the cell regardless of how many other different
> words there are. Do you know how to do this? Thanks.
>
> "Luke M" wrote:
>
> > To clarify, you want all cells in column D that say "Saturday" to have red
> > background?
> >
> > Format-Condition Format, Cell value is equal to "Saturday". Choose red
> > pattern.
> >
> > Or, if you wanted a corresponding column to change color
> > Formula is:
> > =D1="Saturday"
> > and then pick pattern, and copy cell down as desired.
> > --
> > Best Regards,
> >
> > Luke M
> > *Remember to click "yes" if this post helped you!*
> >
> >
> > "Daren" wrote:
> >
> > > Hello. I have text values in column D that contain the word Saturday. I
> > > need a conditional format that turns the cells red to use in column D to find
> > > those cells that contain Saturday. I think a formula can be used in
> > > conditional formatting but I am unsure what it can be. How can I do this?
> > > Thanks.

 
Reply With Quote
 
Shane Devenshire
Guest
Posts: n/a
 
      23rd Feb 2009
Hi,

Try this as your condtional formatting formula

=ISNUMBER(FIND("Saturday",A1))

--
If this helps, please click the Yes button

Cheers,
Shane Devenshire


"Daren" wrote:

> I tried that but it did not take, and I think that is due to the fact that
> there are other words in the cell, such as The First (Saturday). Is there a
> way to get around this? Thanks.
>
> "Fred Smith" wrote:
>
> > What's wrong with a conditional format of:
> > Value is: Saturday
> > Format: red color
> > ?
> >
> > Regards,
> > Fred.
> >
> > "Daren" <(E-Mail Removed)> wrote in message
> > news:63FCCF3A-D13A-4925-BF1A-(E-Mail Removed)...
> > > Hello. I have text values in column D that contain the word Saturday. I
> > > need a conditional format that turns the cells red to use in column D to
> > > find
> > > those cells that contain Saturday. I think a formula can be used in
> > > conditional formatting but I am unsure what it can be. How can I do this?
> > > Thanks.

> >
> >

 
Reply With Quote
 
Shane Devenshire
Guest
Posts: n/a
 
      23rd Feb 2009
Hi,

I should also mention that if you are using 2007 there is a simplier way:

Highlight the data and choose Home, Conditional Formatting, Highlight Cell
Rules, Text that Contains and enter Saturday.

--
If this helps, please click the Yes button

Cheers,
Shane Devenshire


"Daren" wrote:

> I tried that but it did not take, and I think that is due to the fact that
> there are other words in the cell, such as The First (Saturday). Is there a
> way to get around this? Thanks.
>
> "Fred Smith" wrote:
>
> > What's wrong with a conditional format of:
> > Value is: Saturday
> > Format: red color
> > ?
> >
> > Regards,
> > Fred.
> >
> > "Daren" <(E-Mail Removed)> wrote in message
> > news:63FCCF3A-D13A-4925-BF1A-(E-Mail Removed)...
> > > Hello. I have text values in column D that contain the word Saturday. I
> > > need a conditional format that turns the cells red to use in column D to
> > > find
> > > those cells that contain Saturday. I think a formula can be used in
> > > conditional formatting but I am unsure what it can be. How can I do this?
> > > Thanks.

> >
> >

 
Reply With Quote
 
Shane Devenshire
Guest
Posts: n/a
 
      23rd Feb 2009
Hi,

One more comment - the difference between FIND and SEARCH with regards to
your situation - FIND is case sensitive while SEARCH is not.

--
If this helps, please click the Yes button

Cheers,
Shane Devenshire


"Daren" wrote:

> I tried that but it did not take, and I think that is due to the fact that
> there are other words in the cell, such as The First (Saturday). Is there a
> way to get around this? Thanks.
>
> "Fred Smith" wrote:
>
> > What's wrong with a conditional format of:
> > Value is: Saturday
> > Format: red color
> > ?
> >
> > Regards,
> > Fred.
> >
> > "Daren" <(E-Mail Removed)> wrote in message
> > news:63FCCF3A-D13A-4925-BF1A-(E-Mail Removed)...
> > > Hello. I have text values in column D that contain the word Saturday. I
> > > need a conditional format that turns the cells red to use in column D to
> > > find
> > > those cells that contain Saturday. I think a formula can be used in
> > > conditional formatting but I am unsure what it can be. How can I do this?
> > > Thanks.

> >
> >

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
conditional formatting a text field babs Microsoft Access 3 7th Nov 2009 04:56 PM
Conditional formatting - highlight an entire row Dave K Microsoft Excel Discussion 1 22nd Aug 2008 10:39 PM
formatting text field to show numbers only Russ via AccessMonster.com Microsoft Access Queries 3 17th Nov 2006 08:49 PM
Highlight text - Can not use conditional formatting. JKlein Microsoft Access Form Coding 3 21st Jun 2006 03:00 PM
Conditional formatting on named text field =?Utf-8?B?U2hhcm9uIFA=?= Microsoft Excel Misc 1 21st Jun 2005 10:30 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:53 PM.