vba conditional format

tsitsicat1

New Member
Joined
Jun 27, 2018
Messages
10
Good-morning to everyone.
Can anyone help me with my problem?
I want to compare to columns A and B and color A cells.
The parameters are the following.
If cell B is a negative number then cell A must be red.
If cell B is bigger than cell A then cell A must be green.
If cell B is bigger than 0 and smaller than cell A then cell A must be yellow.
It is necessary all the rules to work together.
I really need your advice.
Thanks everyone in advance
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Code:
Option Explicit


Sub foo()
    Dim lr As Long, i As Long
    lr = Range("A" & Rows.Count).End(xlUp).Row
    For i = 1 To lr
        If Range("B" & i) < 0 Then Range("A" & i).Interior.ColorIndex = 3
        If Range("B" & i) > Range("A" & i) Then Range("A" & i).Interior.ColorIndex = 4
        If Range("B" & i) > 0 And Range("B" & i) < Range("A" & i) Then Range("A" & i).Interior.ColorIndex = 6
    Next i
End Sub
 
Upvote 0
Code:
Option Explicit


Sub foo()
    Dim lr As Long, i As Long
    lr = Range("A" & Rows.Count).End(xlUp).Row
    For i = 1 To lr
        If Range("B" & i) < 0 Then Range("A" & i).Interior.ColorIndex = 3
        If Range("B" & i) > Range("A" & i) Then Range("A" & i).Interior.ColorIndex = 4
        If Range("B" & i) > 0 And Range("B" & i) < Range("A" & i) Then Range("A" & i).Interior.ColorIndex = 6
    Next i
End Sub


You are amazing!!!
I was trying 3 days to make work and you solved it at once!!!
Thank you so much!!!:):)
 
Upvote 0

Forum statistics

Threads
1,214,782
Messages
6,121,532
Members
449,037
Latest member
tmmotairi

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top