If two conditions met, highlight cell VBA

mbkinzer

New Member
Joined
Jan 12, 2021
Messages
18
Office Version
  1. 2019
Platform
  1. Windows
Hello,

I would like for the macro to read column K (11) down to my last row (lrow) and if the cell contains "Bus driver" and the same row in Column O (15) reads "$0.00" to highlight the cells.
Currently nothing is happening so I feel like I am way off. Any help would be appreciated!

My current macro reads:

If Range(Cells(lrow, 11), Cells(lrow, 11)) = "Bus Driver" And Range(Cells(lrow, 15), Cells(lrow, 15)) = "0.00" Then
Range(Cells(lrow, 11), Cells(lrow, 11)).Interior.ColorIndex = 15
Else
Range(Cells(lrow, 11), Cells(lrow, 11)).Interior.ColorIndex = xlNone
End If
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Try this.

VBA Code:
Option Explicit
Option Compare Text
Sub BusDriver()
    Dim lr As Long, c As Range
    lr = Cells(Rows.Count, "K").End(3).Row
    Range("K2:K" & lr).Interior.ColorIndex = xlNone
    For Each c In Range("K2:K" & lr)
        If c = "Bus driver" And c.Offset(, 4) = 0 Then c.Interior.ColorIndex = 15
    Next c
End Sub
 
Upvote 0
In column O, the value is text or number? Declaring as "0.00" will make looks for text/string instead of number value.
Here is another alternative

VBA Code:
Sub ColorZero()

Dim nRow As Long, eRow As Long
Dim ws As Worksheet

' Assuming the sheet name is Sheet1. Rename accordingly
Set ws = ActiveWorkbook.Sheets("Sheet1")
' Find the last row with data
eRow = ws.Cells(ws.Rows.Count, "K").End(xlUp).Row
' Assuming initial data row is 2. Change if required
For nRow = 2 To eRow
    If ws.Range("K" & nRow) = "Bus driver" And ws.Range("O" & nRow) = 0 Then
        ws.Range("K" & nRow).Interior.ColorIndex = 15
    Else
        ws.Range("K" & nRow).Interior.ColorIndex = xlColorIndexNone
    End If
Next

End Sub
 
Upvote 0
Solution
In column O, the value is text or number? Declaring as "0.00" will make looks for text/string instead of number value.
Here is another alternative

VBA Code:
Sub ColorZero()

Dim nRow As Long, eRow As Long
Dim ws As Worksheet

' Assuming the sheet name is Sheet1. Rename accordingly
Set ws = ActiveWorkbook.Sheets("Sheet1")
' Find the last row with data
eRow = ws.Cells(ws.Rows.Count, "K").End(xlUp).Row
' Assuming initial data row is 2. Change if required
For nRow = 2 To eRow
    If ws.Range("K" & nRow) = "Bus driver" And ws.Range("O" & nRow) = 0 Then
        ws.Range("K" & nRow).Interior.ColorIndex = 15
    Else
        ws.Range("K" & nRow).Interior.ColorIndex = xlColorIndexNone
    End If
Next

End Sub
This worked for me. Thank you! What if I wanted to highlight if the cell in Column K contained the word "Bus driver" instead of it being = to bus driver?
 
Upvote 0
Like @bebo021999 said use operator Like

VBA Code:
If ws.Range("K" & nRow) Like "*Bus driver*" And ws.Range("O" & nRow) = 0 Then

However, Like is case sensitive. So, if you want it to insensitive you need to put Option Compare Text at the top of your module
 
Upvote 0
Like @bebo021999 said use operator Like

VBA Code:
If ws.Range("K" & nRow) Like "*Bus driver*" And ws.Range("O" & nRow) = 0 Then

However, Like is case sensitive. So, if you want it to insensitive you need to put Option Compare Text at the top of your module
Thank you so much!!
 
Upvote 0

Forum statistics

Threads
1,215,005
Messages
6,122,661
Members
449,091
Latest member
peppernaut

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