How do I make this a function so that I can pass "B38" as a variable? I tried putting 'startCell' inside the range function, but it barfed and I'm not clear what's required to make that work...
TIA
Set startCell = Range("B38")
For i = 0 To 6
hourVal = Worksheets("Expense & Hours").Range("b38").Offset(0, i).Value
dateVal = Worksheets("Expense & Hours").Range("b38").Offset(2, i).Value
MsgBox "Current: " & hourVal & " " & dateVal
Next i