Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I have the following code, which looks at the cells BF9, BF10 etc and i the corresponding cell J9, J10 etc is greater then cell G9, G10 et changes colour. What I really want is to use the Pcent value (ie: 5%) to make th calculation a bit more complicated, whereby the value has to be 5 greater or 5% lower to trigger a change in the colours. Sub TrafficLights() Dim R As Integer Dim Pcent As Integer Pcent = 0.05 For R = 9 To 383 ' note the number range If Range("BF" & R).Value < Range("J" & R).Value Then Range("G" & R).Interior.Color = vbGreen Else Range("G" & R).Interior.Color = vbRed End If Next R End Sub I hope this makes sense, and hope someone can help me Thank you Amy x -- AmyTaylo ----------------------------------------------------------------------- AmyTaylor's Profile: http://www.excelforum.com/member.php...fo&userid=2097 View this thread: http://www.excelforum.com/showthread.php?threadid=38838 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Sumproduct with variation | Excel Discussion (Misc queries) | |||
Using some variation of int or trunc | Excel Discussion (Misc queries) | |||
Variation on If Then Else Theme | Excel Discussion (Misc queries) | |||
Variation from the mean? | Charts and Charting in Excel | |||
SUMIF variation? | Excel Worksheet Functions |