conditional formatting

jurasic

New Member
Joined
Aug 9, 2010
Messages
2
I need to bold the text whenever the text in column C changes. So column C has many rows C that contain "alligator". When that changes to "aspirin" the first occurance should be bold.

I'm not sure how to approach this.
Thanks in advance.
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
On the 2nd cell down create conditional formatting that says that if not equal to the above cell then bold the text. Make sure to remove the $ before the cell number. The just copy and paste special format to the cells below.
 
Upvote 0
I need to bold the text whenever the text in column C changes. So column C has many rows C that contain "alligator". When that changes to "aspirin" the first occurance should be bold.

I'm not sure how to approach this.
Thanks in advance.
Assuming the data starts in C1 and goes to C100 (change to fit your sheet), select C1 to C100 and use the conditional format:
Code:
=AND(C1="aspirin",COUNTIF(C$1:C1,"aspirin")=1)
Set the format to Bold when this condition is met.
 
Upvote 0
Hi and welcome to the board!!
Select Column "C" then choose Format>Conditional Formatting
Select the "Formula Is" option
Now enter this
Code:
=COUNTIF($C$1:$C1,$C1)=1
Format as desired. I would use a color, but you can use Bold if that's what you require

lenze
BTW: Nothingham's suggestion will also work quite well
 
Last edited:
Upvote 0
All solutions are working for me. I needed Nothingman's reminder to remove the $ from the row.

You are all awesome. Thank you for the quick responses. What a great board.
 
Upvote 0

Forum statistics

Threads
1,214,924
Messages
6,122,293
Members
449,077
Latest member
Rkmenon

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top