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

Hello Whenever the letters BQ appears in a cell I want to format that cell
in yellow . This is what I did
formatconditional formatformula is =A1 ="BQ" then I selected the
formating. This does not work because there are 4 numbers before the letters
BQ I tried several combinations, " BQ", "****BQ" How do I correct this?
thanks
  #2   Report Post  
Posted to microsoft.public.excel.misc
bj bj is offline
external usenet poster
 
Posts: 1,397
Default Conditional Formatting

try
=right(a1,2)="BQ"

"Wanna Learn" wrote:

Hello Whenever the letters BQ appears in a cell I want to format that cell
in yellow . This is what I did
formatconditional formatformula is =A1 ="BQ" then I selected the
formating. This does not work because there are 4 numbers before the letters
BQ I tried several combinations, " BQ", "****BQ" How do I correct this?
thanks

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,886
Default Conditional Formatting

Hi

If there are always 4 numbers before the BQ then
=MID(A1,5,2)="BQ"

--
Regards

Roger Govier


"Wanna Learn" wrote in message
...
Hello Whenever the letters BQ appears in a cell I want to format
that cell
in yellow . This is what I did
formatconditional formatformula is =A1 ="BQ" then I selected the
formating. This does not work because there are 4 numbers before the
letters
BQ I tried several combinations, " BQ", "****BQ" How do I
correct this?
thanks



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 620
Default Conditional Formatting

=RIGHT(A1,2)="BQ"
or (if you just want to look for BQ anywhere in the cell)
=ISNUMBER(SEARCH("BQ",A1))
or =ISNUMBER(FIND("BQ",A1)) if you want it case sensitive.
--
David Biddulph

"Wanna Learn" wrote in message
...
Hello Whenever the letters BQ appears in a cell I want to format that
cell
in yellow . This is what I did
formatconditional formatformula is =A1 ="BQ" then I selected the
formating. This does not work because there are 4 numbers before the
letters
BQ I tried several combinations, " BQ", "****BQ" How do I correct
this?
thanks



  #5   Report Post  
Posted to microsoft.public.excel.misc
bj bj is offline
external usenet poster
 
Posts: 1,397
Default Conditional Formatting

another way
=not(iserrorfind("BQ",A1)<len(A1)))
this should work if BQ is anywhere in cell A!

"Wanna Learn" wrote:

Hello Whenever the letters BQ appears in a cell I want to format that cell
in yellow . This is what I did
formatconditional formatformula is =A1 ="BQ" then I selected the
formating. This does not work because there are 4 numbers before the letters
BQ I tried several combinations, " BQ", "****BQ" How do I correct this?
thanks



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
sorting a range with conditional formatting renie Excel Worksheet Functions 2 June 2nd 06 10:43 PM
conditional formatting glitches Kat Excel Discussion (Misc queries) 2 May 26th 06 08:16 PM
Keeping conditional formatting when sorting Andrea A Excel Discussion (Misc queries) 0 April 4th 06 03:00 PM
conditional formatting Rich Excel Discussion (Misc queries) 2 April 1st 06 10:27 AM
cannot use ISEVEN or ISODD functions in Conditional Formatting Scott Paine Excel Worksheet Functions 6 December 6th 05 09:44 PM


All times are GMT +1. The time now is 06:22 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"