Thread: Why R/T Error?
View Single Post
  #3   Report Post  
Don Guillett
 
Posts: n/a
Default

Pls see my post in programming. Please do NOT multipost. We read em all.

--
Don Guillett
SalesAid Software

"Jim May" wrote in message
news:Pe0zd.9984$jn.301@lakeread06...
Sub SumByEmployee()
Dim MyPick As String
Dim mTotal As Double
Dim rngemp As Range
mTotal = 0
MyPick = InputBox("What Employee Do you Want?")
Set rngemp = Range("C6:C15") 'list of employees - single names
For Each c In rngemp
If c = MyPick Then
mTotal = mTotal + rngemp.Offset(, -1).Value 'R/T error happens here
End If
Next c
Range("B18").Value = mTotal
End Sub

Thanks for any help!!