View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Claus Busch Claus Busch is offline
external usenet poster
 
Posts: 3,872
Default Conditianl formating with AND formula

Hi Avi,

Am Mon, 16 Feb 2015 02:42:19 -0800 (PST) schrieb
:

I'm trying to format a column (Range("g1:g7")) based on the value of each row in that column AND the value of the same row in another column


try:

Sub Test()
Dim aa As String, bb As String, daformula As String

aa = "EMEA"
bb = "South Africa"
daformula = "=AND($g1=""" & aa & """,$e1=""" & bb & """)"

Range("G1:G7").Select
With Selection
.FormatConditions.Add Type:=xlExpression, Formula1:=daformula
.FormatConditions(.FormatConditions.Count).SetFirs tPriority
With .FormatConditions(1).Font
.Color = -1638844
End With
End With
End Sub



Regards
Claus B.
--
Vista Ultimate / Windows7
Office 2007 Ultimate / 2010 Professional