Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / New Users / April 2004

Tip: Looking for answers? Try searching our database.

Color Question in Excel

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
John - 13 Apr 2004 15:12 GMT
Say I have a spreadsheet with several columns and rows of data.  Say
column G is a column that I enter a date when a "case" is closed.  Can I
format the cell so that when a date is entered into column G12, for
example, the entire contents of row 12 turns another color, such as
red.  What I'm looking for is a quick visual way to look at the
spreadsheet and tell which cases are closed vs open.

Thanks,

John
Frank Kabel - 13 Apr 2004 15:26 GMT
Hi
have a look at 'Format - Conditional Formating'. e.g. in your case
celect cells A12:G12, goto this dialog and enter the formula
=$G12<>""
and choose a format

also have a look at
http://www.cpearson.com/excel/cformatting.htm
http://www.contextures.com/xlCondFormat01.html

Signature

--
Regards
Frank Kabel
Frankfurt, Germany


> Say I have a spreadsheet with several columns and rows of data.  Say
> column G is a column that I enter a date when a "case" is closed.
[quoted text clipped - 6 lines]
>
> John
John - 13 Apr 2004 15:39 GMT
Frank... I'd buy you a beer if I could.  Thanks for your help once again!

John

> Hi
> have a look at 'Format - Conditional Formating'. e.g. in your case
[quoted text clipped - 21 lines]
> >
> > John
Don Guillett - 13 Apr 2004 15:45 GMT
Right click on sheet tab>view code>insert this.
Now if you enter a date in column g below row 2 you get purple.

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column <> 7 Or Target.Row < 3 Then Exit Sub
If IsDate(Target) Then _
Target.EntireRow.Interior.ColorIndex = 7
End Sub
Signature

Don Guillett
SalesAid Software
donaldb@281.com

> Say I have a spreadsheet with several columns and rows of data.  Say
> column G is a column that I enter a date when a "case" is closed.  Can I
[quoted text clipped - 6 lines]
>
> John
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.