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

Hi,

I am quite new in excel so this question might be silly. I am using
conditonal formatting and I'd like a whole line to change color (and
not only the cell) when I find a certain word in a given column. Hope
this is clear.
Thanks

Ronan



------------------------------------------------
~~ Message posted from http://www.ExcelTip.com/
~~ View and post usenet messages directly from http://www.ExcelForum.com/

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 576
Default Conditional Formating

Ronan,

Select the entire data set. Than go to conditional formating.
Change to 'Formula Is'
than enter =$A1="myword"
Where A is the column you want.
Where 1 is the first row of your selection.
Change as needed to fit your circumstances.

Once you get the hang of this you can record a macro to automate
the process for future needs.

--
sb
"Ronan" wrote in message
...
Hi,

I am quite new in excel so this question might be silly. I am using
conditonal formatting and I'd like a whole line to change color (and
not only the cell) when I find a certain word in a given column. Hope
this is clear.
Thanks

Ronan



------------------------------------------------
~~ Message posted from http://www.ExcelTip.com/
~~ View and post usenet messages directly from http://www.ExcelForum.com/



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,337
Default Conditional Formating

More info needed but if you
right click on sheet tabview codeinsert this

it will turn the active column red if cw is typed into any cell
and change back if anything else is typed into any cell.
Maybe it will help you to get where you want to be.

Private Sub Worksheet_Change(ByVal Target As Range)
'If Target.Column < 2 Then Exit Sub
If Target = "cw" Then
ActiveCell.EntireColumn.Interior.ColorIndex = 3
Else
ActiveCell.EntireColumn.Interior.ColorIndex = -4142
End If
End Sub

"Ronan" wrote in message
...
Hi,

I am quite new in excel so this question might be silly. I am using
conditonal formatting and I'd like a whole line to change color (and
not only the cell) when I find a certain word in a given column. Hope
this is clear.
Thanks

Ronan



------------------------------------------------
~~ Message posted from http://www.ExcelTip.com/
~~ View and post usenet messages directly from http://www.ExcelForum.com/



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 Kanmi Excel Worksheet Functions 1 July 15th 09 04:33 AM
CONDITIONAL FORMATING Kanmi Excel Worksheet Functions 3 July 13th 09 04:12 PM
Conditional formating Brian Bermingham[_2_] Excel Discussion (Misc queries) 3 July 1st 09 08:41 PM
Conditional formating a row bgl Excel Worksheet Functions 1 August 10th 06 04:09 PM
Install dates formating using conditional formating? Jerry Eggleston Excel Discussion (Misc queries) 2 November 9th 05 05:49 PM


All times are GMT +1. The time now is 02:00 AM.

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"