M
Matthew Dyer
Here's what I have so far. Of course it isn't working properly, but I
think it should be an easy fix. I have a input box pop up requesting a
numerical value. Then, if the value in column F is >= this value, it
highlights the row as yellow.
Sub RollCalc()
Dim RollVal As Long
RollVal = Application.InputBox("What is the Roll DPD?", "Get Roll DPD
Value", Type:=1)
With Row
If .Column(F).Value >= RollVal Then Row.ColorIndex = 6
End
End With
End Sub
Is my With Row part just terrible from beginning to end? Any help?
think it should be an easy fix. I have a input box pop up requesting a
numerical value. Then, if the value in column F is >= this value, it
highlights the row as yellow.
Sub RollCalc()
Dim RollVal As Long
RollVal = Application.InputBox("What is the Roll DPD?", "Get Roll DPD
Value", Type:=1)
With Row
If .Column(F).Value >= RollVal Then Row.ColorIndex = 6
End
End With
End Sub
Is my With Row part just terrible from beginning to end? Any help?