Thanks Daniel that works, but I'm still trying to wrap my head around
applying this format to various ranges on the worksheet.

My data I'm comparing is in Column D and F, E and G....etc all the way
up to Column EK.  Any pointers on skipping around with this formula?

Thanks again!

Natron


> Try :
>
> Sub ConFormatOffset()
>     With Range([A1], Cells(Rows.Count, 1).End(xlUp))
>         .FormatConditions.Delete
>         .FormatConditions.Add Type:=xlExpression, Operator:=xlGreater, _
>             Formula1:="=A1>B1"
>         .FormatConditions(1).Interior.Color = RGB(255, 0, 0)
>     End With
> End Sub
>
> Daniel

-- 
----------------------------------------------------------------------------------
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com

<><><><><><><><><><><><><><><><><><><><><><>
Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel

Reply via email to