Update a Cell Value to Accept or Reject based on Other Cells Colors (All in the Same Row)

MaggieSlate

New Member
Joined
Sep 13, 2017
Messages
2
Hi,

I am trying to update a cell (LR, 3) with Accept or Reject based on the colors from cell range (LR, 4) to (LR, 8). I am having trouble specifically this line, If Rng.Interior.ColorIndex = 3 Then.

What I would like to have happen is that is any of the cells are shaded red from being outside of a range, it would reject the part.

Thanks, Maggie

Here is the code...

Private Sub CmdButton_Submit_Click()
'finds first empty row to input data
LR = Sheets("Inspection DB").Range("A1000000").End(xlUp).Row + 1

'Saving the from the userform to an excel sheet
Worksheets("Inspection DB").Cells(LR, 1) = ComboBox_Number.Value
Worksheets("Inspection DB").Cells(LR, 2) = ID_Number_Textbox.Value
Worksheets("Inspection DB").Cells(LR, 4) = A1_TextBox.Value
If Worksheets("Inspection DB").Cells(LR, 4).Value <= 55 And Worksheets("Inspection DB").Cells(LR, 4).Value >= 2 Then
'do nothing
Else
Worksheets("Inspection DB").Cells(LR, 4).Interior.ColorIndex = 3
End If
Worksheets("Inspection DB").Cells(LR, 5) = A2_TextBox.Value
If Worksheets("Inspection DB").Cells(LR, 5).Value <= 5 And Worksheets("Inspection DB").Cells(LR, 4).Value >= 2 Then
'do nothing
Else
Worksheets("Inspection DB").Cells(LR, 5).Interior.ColorIndex = 3
End If
Worksheets("Inspection DB").Cells(LR, 6) = A3_TextBox.Value
If Worksheets("Inspection DB").Cells(LR, 6).Value <= 5 And Worksheets("Inspection DB").Cells(LR, 4).Value >= 2 Then
'do nothing
Else
Worksheets("Inspection DB").Cells(LR, 6).Interior.ColorIndex = 3
End If
Worksheets("Inspection DB").Cells(LR, 7) = A4_TextBox.Value
If Worksheets("Inspection DB").Cells(LR, 7).Value <= 5 And Worksheets("Inspection DB").Cells(LR, 4).Value >= 2 Then
'do nothing
Else
Worksheets("Inspection DB").Cells(LR, 7).Interior.ColorIndex = 3
End If
Worksheets("Inspection DB").Cells(LR, 8) = A5_TextBox.Value
If Worksheets("Inspection DB").Cells(LR, 8).Value <= 72 And Worksheets("Inspection DB").Cells(LR, 4).Value >= 37 Then
'do nothing
Else
Worksheets("Inspection DB").Cells(LR, 8).Interior.ColorIndex = 3
End If
For Each cell In Range(Cells(LR, 4), Cells(LR, 8))

'If Rng.Interior.ColorIndex = 3 Then
Worksheets("Inspection DB").Cells(LR, 3).Value = "Reject"
Else
Worksheets("Inspection DB").Cells(LR, 3).Value = "Accept"
End If
Next
Worksheets("Inspection DB").Cells(LR, 9) = R_Number_Textbox.Value
Worksheets("Inspection DB").Cells(LR, 10) = Op_Name_TextBox.Value
Worksheets("Inspection DB").Cells(LR, 11) = Date

'gives confirmation that the data was saved
MsgBox ("Data Saved")
cleardata
End Sub
<strike></strike>
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Try
Code:
If cell.Interior.ColorIndex = 3 Then
 
Upvote 0

Forum statistics

Threads
1,217,390
Messages
6,136,320
Members
450,005
Latest member
BigPaws

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