Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 75
Default How to increase number of "conditional format"

I know that it is possible using VBE!


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default How to increase number of "conditional format"

Take a look at http://www.xldynamic.com/source/xld.....Download.html

--

HTH

RP
(remove nothere from the email address if mailing direct)


"crapit" wrote in message
...
I know that it is possible using VBE!




  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 75
Default How to increase number of "conditional format"

What abt using VBA?
"Bob Phillips" wrote in message
...
Take a look at http://www.xldynamic.com/source/xld.....Download.html

--

HTH

RP
(remove nothere from the email address if mailing direct)


"crapit" wrote in message
...
I know that it is possible using VBE!






  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default How to increase number of "conditional format"

It is not trivial, as that addin proves (which is VBA), as taking care of
many likelihoods takes a lot of code. If you just want a simple event based
test you can use something like

Private Sub Worksheet_Change(ByVal Target As Range)


On Error GoTo ws_exit:
Application.EnableEvents = False
If Not Intersect(Target, Me.Range("A1:H10")) Is Nothing Then
With Target
Select Case UCase(.Value)
Case "b": .Interior.ColorIndex = 5
Case "o": .Interior.ColorIndex = 46
Case "p": .Interior.ColorIndex = 7
Case "r": .Interior.ColorIndex = 3
'etc.
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

RP
(remove nothere from the email address if mailing direct)


"crapit" wrote in message
...
What abt using VBA?
"Bob Phillips" wrote in message
...
Take a look at http://www.xldynamic.com/source/xld.....Download.html

--

HTH

RP
(remove nothere from the email address if mailing direct)


"crapit" wrote in message
...
I know that it is possible using VBE!








  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 75
Default How to increase number of "conditional format"

Any other alternative?
"Bob Phillips" wrote in message
...
Take a look at http://www.xldynamic.com/source/xld.....Download.html

--

HTH

RP
(remove nothere from the email address if mailing direct)


"crapit" wrote in message
...
I know that it is possible using VBE!








  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 75
Default How to increase number of "conditional format"

Any other alternative to the CFplus? It seems to be quite slow!
"Bob Phillips" wrote in message
...
Take a look at http://www.xldynamic.com/source/xld.....Download.html

--

HTH

RP
(remove nothere from the email address if mailing direct)


"crapit" wrote in message
...
I know that it is possible using VBE!






  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,758
Default How to increase number of "conditional format"

How about just running the code on demand.

The formatting won't change until you run the macro and you'll have to remember
to run the macro when you change data (or when you're done changing all the
data).

crapit wrote:

Any other alternative to the CFplus? It seems to be quite slow!
"Bob Phillips" wrote in message
...
Take a look at http://www.xldynamic.com/source/xld.....Download.html

--

HTH

RP
(remove nothere from the email address if mailing direct)


"crapit" wrote in message
...
I know that it is possible using VBE!





--

Dave Peterson
  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 75
Default How to increase number of "conditional format"

It doesnt seems to work sometimes
"Dave Peterson" wrote in message
...
How about just running the code on demand.

The formatting won't change until you run the macro and you'll have to
remember
to run the macro when you change data (or when you're done changing all
the
data).

crapit wrote:

Any other alternative to the CFplus? It seems to be quite slow!
"Bob Phillips" wrote in message
...
Take a look at http://www.xldynamic.com/source/xld.....Download.html

--

HTH

RP
(remove nothere from the email address if mailing direct)


"crapit" wrote in message
...
I know that it is possible using VBE!





--

Dave Peterson



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
Difficulty "countif"-ing number of "L1" or "L2" on an autofiltered pmdoherty Excel Worksheet Functions 4 February 6th 09 11:23 AM
how to increase size of "name box" and "contents of cell " displa. Stubby- LIBERTY New Users to Excel 2 February 22nd 07 06:43 PM
Formulae or format to change a number "1" into the word "one Excel Help Excel Discussion (Misc queries) 1 May 30th 06 04:25 PM
cell references increase by 3 per row "=I1" then "=I4" jwk515 Excel Discussion (Misc queries) 3 May 9th 06 02:00 AM
Format a column wihtout using "Format-Cells-Number-category-etc" serve Excel Worksheet Functions 4 February 24th 06 12:54 AM


All times are GMT +1. The time now is 03:22 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"