Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Conditional Formating

Is there a way that I can get a cell to turn, say red, if another cell
in that row has a certain word within it? For example:

Column 'C' contains what kind of information was sent to me, some of
which is LEED information about a product. So the cell will say
something of this sort: LEED submittals - concrete. Every one is a
different submittal however and will say something different.

I'm just wondering if there is some way through conditional
formatting, or otherwise that would allow me to highlight a cell in
column 'O' if the cell in column 'C' of that row contains the word
"LEED"

Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,942
Default Conditional Formating

hi
select O2 then on the menu bar....formatconditional forant....
formula is....=IF(SEARCH("LEED",C2,1),1,0).....pick your format.

Copy O2 then copy down column O.

the search formula is seaching C2 for LEED. if found, high like O2 else don't.

Regards
FSt1

" wrote:

Is there a way that I can get a cell to turn, say red, if another cell
in that row has a certain word within it? For example:

Column 'C' contains what kind of information was sent to me, some of
which is LEED information about a product. So the cell will say
something of this sort: LEED submittals - concrete. Every one is a
different submittal however and will say something different.

I'm just wondering if there is some way through conditional
formatting, or otherwise that would allow me to highlight a cell in
column 'O' if the cell in column 'C' of that row contains the word
"LEED"

Thanks!

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Conditional Formating

Wow, thanks. That did the trick! Would you mind explaining, if you
can, what the formula means so that I may learn to use this function
and apply it to other spreadsheets?

I understand that the search is for the word "LEED" and that we are
searching in cell C2. But was does the 1 mean after C2, and then the
1 and 0 at the end?

Thanks again!
  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,942
Default Conditional Formating

hi
the basic formula is a true/false set up
=if(condition),true,false) or 1 for true, 0 for false
the search part has 3 parts
search term(LEED)
search text(text in C2 or just C2)
Start point. i put 1 meaning start from the first character of the text(in c2)
The true/false setup in O is looking at C and determining if the condition
is true(1) or false(0).
so....
search c2 for LEED, start at character 1 and if true(1)then color else if
false(0), don't.
=if(search("LEED", C2,1),1,0)

regards
FSt1

" wrote:

Wow, thanks. That did the trick! Would you mind explaining, if you
can, what the formula means so that I may learn to use this function
and apply it to other spreadsheets?

I understand that the search is for the word "LEED" and that we are
searching in cell C2. But was does the 1 mean after C2, and then the
1 and 0 at the end?

Thanks again!

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,942
Default Conditional Formating

afterthought...
you can sub the word true for 1 and false for 0 in the formula with no
difference in out come. i use 1 and 0 because it less typing and shorter
formula.

regards
FSt1

"FSt1" wrote:

hi
the basic formula is a true/false set up
=if(condition),true,false) or 1 for true, 0 for false
the search part has 3 parts
search term(LEED)
search text(text in C2 or just C2)
Start point. i put 1 meaning start from the first character of the text(in c2)
The true/false setup in O is looking at C and determining if the condition
is true(1) or false(0).
so....
search c2 for LEED, start at character 1 and if true(1)then color else if
false(0), don't.
=if(search("LEED", C2,1),1,0)

regards
FSt1

" wrote:

Wow, thanks. That did the trick! Would you mind explaining, if you
can, what the formula means so that I may learn to use this function
and apply it to other spreadsheets?

I understand that the search is for the word "LEED" and that we are
searching in cell C2. But was does the 1 mean after C2, and then the
1 and 0 at the end?

Thanks again!



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Conditional Formating

On May 14, 1:56*pm, FSt1 wrote:
afterthought...
you can sub the word true for 1 and false for 0 in the formula with no
difference in out come. i use 1 and 0 because it less typing and shorter
formula.

regards
FSt1



"FSt1" wrote:
hi
the basic formula is a true/false set up
=if(condition),true,false) or 1 for true, 0 for false
the search part has 3 parts
search term(LEED)
search text(text in C2 or just C2)
Start point. i put 1 meaning start from the first character of the text(in c2)
The true/false setup in O is looking at C and determining if the condition
is true(1) or false(0).
so....
search c2 for LEED, start at character 1 and if true(1)then color else if
false(0), don't.
=if(search("LEED", C2,1),1,0)


regards
FSt1


" wrote:


Wow, thanks. *That did the trick! *Would you mind explaining, if you
can, what the formula means so that I may learn to use this function
and apply it to other spreadsheets?


I understand that the search is for the word "LEED" and that we are
searching in cell C2. *But was does the 1 mean after C2, and then the
1 and 0 at the end?


Thanks again!- Hide quoted text -


- Show quoted text -


Thanks! That helps me make a LOT more sense of it all. I appreciate
your time!
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
CONDITIONAL FORMATING inquisitive Excel Discussion (Misc queries) 5 December 10th 07 01:45 PM
Conditional Formating A Row Jules Excel Worksheet Functions 2 November 9th 06 07:42 PM
Conditional Formating Zee Excel Discussion (Misc queries) 5 August 10th 06 02:56 PM
Install dates formating using conditional formating? Jerry Eggleston Excel Discussion (Misc queries) 2 November 9th 05 05:49 PM
conditional formating Jed Excel Discussion (Misc queries) 3 June 14th 05 05:11 PM


All times are GMT +1. The time now is 12:48 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"