Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Range("U1").Value= "Temp Rate"
Columns("U:U").NumberFormat = "#,##0.0000"
Dim SB1446_FootCare_Rate
For MY_ROWS = 1 To ActiveSheet.UsedRange.Rows.Count
If (Range("N" & MY_ROWS).Value) >= 0.01 And (Range("H" & MY_ROWS).Value) = ("H720") And (Range("C" & MY_ROWS).Value) = "1446" Then
SB1446_FootCare_Rate = InputBox("Enter the H720 - Foot Care Home Visit (Weekday) Rate for employee 1446")
Range("U" & MY_ROWS).FormulaR1C1 = SB1446_FootCare_Rate And Range("D" & MY_ROWS).ClearContents
End If
Next MY_ROWS
Range("U1").Value= "Temp Rate"
Columns("U:U").NumberFormat = "#,##0.0000"