Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This formula in B1 is: =SUBSTITUTE(A1,".","")
returns a number. (It removes a series of "dots" from the cell contents in A1.) Is it possible to have another cell C3 in that row become formatted, if the contents of B1 are displaying the number 3? So: A1 contains: " ............3" (without the quotes) B1 displays the number 3 We'd like C3 to be bold, lets say, or purple if a 3 is displayed in B1. Thanks, Rick |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
http://www.contextures.com/xlCondFormat01.html
-- __________________________________ HTH Bob "Rick" wrote in message ... This formula in B1 is: =SUBSTITUTE(A1,".","") returns a number. (It removes a series of "dots" from the cell contents in A1.) Is it possible to have another cell C3 in that row become formatted, if the contents of B1 are displaying the number 3? So: A1 contains: " ............3" (without the quotes) B1 displays the number 3 We'd like C3 to be bold, lets say, or purple if a 3 is displayed in B1. Thanks, Rick |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
So: A1 contains: " ............3" (without the quotes)
This formula in B1 is: =SUBSTITUTE(A1,".","") B1 displays the number 3 The result in B1 is a *text* number not a *numeric* number. You may want to change the formula to: =--SUBSTITUTE(A1,".","") This will coerce the text number to a *numeric* number. Then, to apply the formatting: Select cell C3 Goto the menu FormatConditional Formatting Select the Formula Is option Enter this formula in the little box to the right: =B1=3 Click the Format button Select the desired style(s) OK out -- Biff Microsoft Excel MVP "Rick" wrote in message ... This formula in B1 is: =SUBSTITUTE(A1,".","") returns a number. (It removes a series of "dots" from the cell contents in A1.) Is it possible to have another cell C3 in that row become formatted, if the contents of B1 are displaying the number 3? So: A1 contains: " ............3" (without the quotes) B1 displays the number 3 We'd like C3 to be bold, lets say, or purple if a 3 is displayed in B1. Thanks, Rick |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Jul 15, 4:28*pm, "T. Valko" wrote:
So: A1 contains: " ............3" (without the quotes) This formula in B1 is: =SUBSTITUTE(A1,".","") B1 displays the number 3 The result in B1 is a *text* number not a *numeric* number. You may want to change the formula to: =--SUBSTITUTE(A1,".","") This will coerce the text number to a *numeric* number. Then, to apply the formatting: Select cell C3 Goto the menu FormatConditional Formatting Select the Formula Is option Enter this formula in the little box to the right: =B1=3 Click the Format button Select the desired style(s) OK out -- Biff Microsoft Excel MVP "Rick" wrote in message ... This formula in B1 is: =SUBSTITUTE(A1,".","") returns a number. (It removes a series of "dots" from the cell contents in A1.) Is it possible to have another cell C3 in that row become formatted, if the contents of B1 are displaying the number 3? So: A1 contains: " ............3" (without the quotes) B1 displays the number 3 We'd like C3 to be bold, lets say, or purple if a 3 is displayed in B1. Thanks, Rick- Hide quoted text - - Show quoted text - Thank you Biff and Bob. Will have a run at them in the AM, and report back. Rick |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Click in C3, then, from the Menu Bar:
<Format <Conditional Formatting Change "Cell Value Is" to "Formula Is", and enter this formula: =B1="3" Then click on <Format and choose whatever you like, Then <OK <OK The parenthesis around the 3 is necessary because your Substitute formula returns a Text value, not a true number. -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "Rick" wrote in message ... This formula in B1 is: =SUBSTITUTE(A1,".","") returns a number. (It removes a series of "dots" from the cell contents in A1.) Is it possible to have another cell C3 in that row become formatted, if the contents of B1 are displaying the number 3? So: A1 contains: " ............3" (without the quotes) B1 displays the number 3 We'd like C3 to be bold, lets say, or purple if a 3 is displayed in B1. Thanks, Rick |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I just gotta refresh my OE more often!<bg
-- Regards, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "RagDyer" wrote in message ... Click in C3, then, from the Menu Bar: <Format <Conditional Formatting Change "Cell Value Is" to "Formula Is", and enter this formula: =B1="3" Then click on <Format and choose whatever you like, Then <OK <OK The parenthesis around the 3 is necessary because your Substitute formula returns a Text value, not a true number. -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "Rick" wrote in message ... This formula in B1 is: =SUBSTITUTE(A1,".","") returns a number. (It removes a series of "dots" from the cell contents in A1.) Is it possible to have another cell C3 in that row become formatted, if the contents of B1 are displaying the number 3? So: A1 contains: " ............3" (without the quotes) B1 displays the number 3 We'd like C3 to be bold, lets say, or purple if a 3 is displayed in B1. Thanks, Rick |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Jul 15, 5:22*pm, "RagDyer" wrote:
I just gotta refresh my OE more often!<bg -- Regards, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! ---------------------------------------------------------------------------"RagDyer" wrote in message ... Click in C3, then, from the Menu Bar: <Format <Conditional Formatting Change "Cell Value Is" to "Formula Is", and enter this formula: =B1="3" Then click on <Format and choose whatever you like, Then <OK <OK The parenthesis around the 3 is necessary because your Substitute formula returns a Text value, not a true number. -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "Rick" wrote in message ... This formula in B1 is: =SUBSTITUTE(A1,".","") returns a number. (It removes a series of "dots" from the cell contents in A1.) Is it possible to have another cell C3 in that row become formatted, if the contents of B1 are displaying the number 3? So: A1 contains: " ............3" (without the quotes) B1 displays the number 3 We'd like C3 to be bold, lets say, or purple if a 3 is displayed in B1. Thanks, Rick- Hide quoted text - - Show quoted text - They all worked fine. You folks are great. Rick. |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You're welcome. Thanks for the feedback!
-- Biff Microsoft Excel MVP "Rick" wrote in message ... On Jul 15, 5:22 pm, "RagDyer" wrote: I just gotta refresh my OE more often!<bg -- Regards, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! ---------------------------------------------------------------------------"RagDyer" wrote in message ... Click in C3, then, from the Menu Bar: <Format <Conditional Formatting Change "Cell Value Is" to "Formula Is", and enter this formula: =B1="3" Then click on <Format and choose whatever you like, Then <OK <OK The parenthesis around the 3 is necessary because your Substitute formula returns a Text value, not a true number. -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "Rick" wrote in message ... This formula in B1 is: =SUBSTITUTE(A1,".","") returns a number. (It removes a series of "dots" from the cell contents in A1.) Is it possible to have another cell C3 in that row become formatted, if the contents of B1 are displaying the number 3? So: A1 contains: " ............3" (without the quotes) B1 displays the number 3 We'd like C3 to be bold, lets say, or purple if a 3 is displayed in B1. Thanks, Rick- Hide quoted text - - Show quoted text - They all worked fine. You folks are great. Rick. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
conditional formatting - problem with text cell value from formula | Excel Worksheet Functions | |||
Conditional Formatting on cell with a formula | Excel Worksheet Functions | |||
Is conditional formatting or formula possible by cell color? | Excel Worksheet Functions | |||
Recognizing Cell Formatting To Use In A Formula Or Conditional For | Excel Worksheet Functions | |||
Conditional Formatting if cell content is a formula | Excel Worksheet Functions |