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

I am using a spreadsheet for job tracking. Each row contains the details for
1 specific job. I have a pull down list set-up in one cell on each row that
has the different options for the job's status.

I would like to have a pattern applied to the entire row depending on the
option selected in the pull down.

Is this possible and how do I do it?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 167
Default Advanced Conditional Formating

Place this in the sheet module and change "A:A" to the column with your pull
downs. Then modify the ColorIndex, Pattern, and PatterColorIndex as desired.

Option Explicit

Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("A:A")) Is Nothing Then
With Target.EntireRow.Interior
.ColorIndex = 3
.Pattern = xlGray16
.PatternColorIndex = 2
End With
End If
End Sub

Mike


"Adam@MGI" wrote:

I am using a spreadsheet for job tracking. Each row contains the details for
1 specific job. I have a pull down list set-up in one cell on each row that
has the different options for the job's status.

I would like to have a pattern applied to the entire row depending on the
option selected in the pull down.

Is this possible and how do I do it?

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
Advanced Conditional Formatting [email protected] Excel Worksheet Functions 8 September 22nd 08 01:33 PM
Formating advanced numbers Negreiros Excel Discussion (Misc queries) 2 August 10th 06 08:22 PM
Advanced Conditional Formatting Ideas Needed! (ok, maybe not that advanced...) shadestreet Excel Discussion (Misc queries) 2 July 21st 06 03:04 PM
Install dates formating using conditional formating? Jerry Eggleston Excel Discussion (Misc queries) 2 November 9th 05 05:49 PM
Conditional Format Advanced Tiegris Excel Worksheet Functions 2 November 8th 04 05:46 PM


All times are GMT +1. The time now is 01:38 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"