Hi,
I have some code that needs to run when the cell says "Yes"..here is the code
I have some code that needs to run when the cell says "Yes"..here is the code
Code:
If Sheets("Order2").Cells(67, 10) = "Yes" Then
Reply = MsgBox("Is this included in the Price?", vbYesNo)
If Reply = vbNo Then
Sheets("Order2").Cells(17, 9) = Sheets("Order2").Cells(17, 14)
Sheets("Order2").Cells(17, 11) = Sheets("Order2").Cells(17, 14)
End If
End If