highlight cells based on 2 cell values

Craigh4444

New Member
Joined
Jun 5, 2023
Messages
2
Office Version
  1. 2011
Platform
  1. Windows
Good morning, i have written the VBA code below to move data from 1 sheet (Mastersheet) to another sheet (Audit Check 1) based on a column cell value and then highlight the blanks that occur in column F,

now i want write this code that will only highlight a cell if the value in column E matches the value i have in my code AND the value in column F is blank.

Private Sub CommandButton1_Click()
Sheets("Audit Check 1").Cells.Clear
Sheets("Audit Check 1").Cells.Interior.Color = xlNone
Dim i, Lastrow

Lastrow = Sheets("P6 Key Fields Layout").Range("A" & Rows.count).End(xlUp).Row
For i = 2 To Lastrow
If Sheets("P6 Key Fields Layout").Cells(i, "E").Value = ("PMS") Then
Sheets("P6 Key Fields Layout").Cells(i, "E").EntireRow.Copy Destination:=Sheets("Audit Check 1").Range("A" & Rows.count).End(xlUp).Offset(1)
End If
Next i


Lastrow = Sheets("P6 Key Fields Layout").Range("A" & Rows.count).End(xlUp).Row
For i = 2 To Lastrow
If Sheets("P6 Key Fields Layout").Cells(i, "E").Value = ("SSR") Then
Sheets("P6 Key Fields Layout").Cells(i, "E").EntireRow.Copy Destination:=Sheets("Audit Check 1").Range("A" & Rows.count).End(xlUp).Offset(1)
End If
Next i


Lastrow = Sheets("P6 Key Fields Layout").Range("A" & Rows.count).End(xlUp).Row
For i = 2 To Lastrow
If Sheets("P6 Key Fields Layout").Cells(i, "E").Value = ("HSR") Then
Sheets("P6 Key Fields Layout").Cells(i, "E").EntireRow.Copy Destination:=Sheets("Audit Check 1").Range("A" & Rows.count).End(xlUp).Offset(1)
End If
Next i

Dim r As Range
Set r = Sheets("Audit Check 1").Range("F:F")

For Each cell In r

If cell.Value = "" Then
cell.Interior.ColorIndex = 6

End If

Next

MsgBox ("Audit Check Complete")

End Sub
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
I think it would go a long way in communicating what you are trying to do if you could show us an example of your data and expected results.

MrExcel has a tool called “XL2BB” that lets you post samples of your data that will allow us to copy/paste it to our Excel spreadsheets, so we can work with the same copy of data that you are. Instructions on using this tool can be found here: XL2BB Add-in

Note that there is also a "Test Here” forum on this board. This is a place where you can test using this tool (or any other posting techniques that you want to test) before trying to use those tools in your actual posts.
 
Upvote 0

Forum statistics

Threads
1,215,094
Messages
6,123,071
Members
449,092
Latest member
ipruravindra

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