Hello Guru's and Moderator's
i need help regarding multiple conditional format for more than 3 condition. I don't know how to write code in VBA.
Please help me
...Marc
Hello Guru's and Moderator's
i need help regarding multiple conditional format for more than 3 condition. I don't know how to write code in VBA.
Please help me
...Marc
Last edited by marc5354; 03-04-2010 at 11:20 AM.
See this link: Get Around Excels 3 Criteria Limit in Conditional Formatting
Palmetto
Do you know . . . ?
You can leave feedback and add to the reputation of all who contributed a helpful response to your solution by clicking the star icon located at the left in one of their post in this thread.
Thank you so much sir... i got you and now its working...
Hello Guru's and Moderator's
I need help regarding multiple conditional format for more than 3 condition. I don't know how to write code in VBA. How to change font colors. If backround colors is Black in particular cell of in particular columns.
Please help me
...Marc
Per the colors you show in your sample workbook.
![]()
Option Explicit Private Sub Worksheet_Change(ByVal Target As Range) Dim icolor As Integer If Not Intersect(Target, Range("A1:A20000")) Is Nothing Then Select Case Target Case "Confirmed": icolor = 10 Case "Declined": icolor = 3 Case "Dispute": icolor = 6 Case "Dropped Out": icolor = 1 Case "Refund": icolor = 37 Case "To Be Charged": icolor = 35 Case Else: 'Whatever End Select Target.Interior.ColorIndex = icolor End If End Sub
Guru, Can you help one more time, if you wish
Marc
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks