Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 37
Default 4th conditional format?

Hi,

Just wondering if it is possible to have a 4th, or 5th, or any amounts of
conditional formatting. I am feeling very restricted with the bog standard
three conditional formats.

Thanks.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default 4th conditional format?

Try this link:

http://www.mcgimpsey.com/excel/conditional6.html

to get up to 6 formats. Only works with numbers.

Hope this helps.

Pete

PG Oriel wrote:
Hi,

Just wondering if it is possible to have a 4th, or 5th, or any amounts of
conditional formatting. I am feeling very restricted with the bog standard
three conditional formats.

Thanks.


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default 4th conditional format?

Or, if you want even more, try this free add-in download from Bob
Phillips:

http://www.xldynamic.com/source/xld.....Download.html

which will give you up to 30.

Hope this helps (further).

Pete

Pete_UK wrote:
Try this link:

http://www.mcgimpsey.com/excel/conditional6.html

to get up to 6 formats. Only works with numbers.

Hope this helps.

Pete

PG Oriel wrote:
Hi,

Just wondering if it is possible to have a 4th, or 5th, or any amounts of
conditional formatting. I am feeling very restricted with the bog standard
three conditional formats.

Thanks.


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,593
Default 4th conditional format?

One way


'-----------------------------------------------------------------
Private Sub Worksheet_Change(ByVal Target As Range)
'-----------------------------------------------------------------
Const WS_RANGE As String = "H1:H10"

On Error GoTo ws_exit:
Application.EnableEvents = False
If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then
With Target
Select Case .Value
Case 1: .Interior.ColorIndex = 3 'red
Case 2: .Interior.ColorIndex = 6 'yellow
Case 3: .Interior.ColorIndex = 5 'blue
Case 4: .Interior.ColorIndex = 10 'green
End Select
End With
End If

ws_exit:
Application.EnableEvents = True
End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.


--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"PG Oriel" wrote in message
...
Hi,

Just wondering if it is possible to have a 4th, or 5th, or any amounts of
conditional formatting. I am feeling very restricted with the bog standard
three conditional formats.

Thanks.



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,574
Default 4th conditional format?

In XL 2007, yes. In previous versions, no.
--
Brevity is the soul of wit.


"PG Oriel" wrote:

Hi,

Just wondering if it is possible to have a 4th, or 5th, or any amounts of
conditional formatting. I am feeling very restricted with the bog standard
three conditional formats.

Thanks.

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
Is it possible to copy a conditional format formula as paste value Francois via OfficeKB.com Excel Discussion (Misc queries) 2 September 22nd 06 09:40 AM
Conditional Format Isa Excel Discussion (Misc queries) 2 September 15th 06 05:56 PM
Conditional Formating. Remove condition, keep format? Mr. Wing Excel Discussion (Misc queries) 0 September 14th 06 07:15 PM
How to create a conditional format that changes the number format tmbo Excel Discussion (Misc queries) 1 August 23rd 06 06:20 AM
Cell Format Changes When Data Is Entered - Not Conditional Formatt SundanceKidLudwig Excel Worksheet Functions 2 September 30th 05 02:07 PM


All times are GMT +1. The time now is 02:42 PM.

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"