These two references aren't on another machine:
Date
2nd block of code having issues
My question is do I have to have the above named references to perform the sub on the other machines....(I don't really know what IDM Error or IDM Macro does).
- IDM Error
- IDM Macro
Date
- Time
- my cell
Code:
'****************Google Quotes*****************Sub AddQuote()
For Each myCell In Range("J8")
Range("J8") = Range("I8") & " " & Range("I9")
If myCell.Value <> " " Then
myCell.Value = Chr(34) & myCell.Value & Chr(34)
End If
Next myCell
2nd block of code having issues
Code:
'Get User Name
Sheets("SpeedLog").Range("A1").End(xlDown).Offset(1, 0).Value = "=udfGetUserName()"
'Speed Time
Sheets("SpeedLog").Range("C1").End(xlDown).Offset(1, 0).Value = DateDiff("s", start_time, end_time)
'Provider researched
Sheets("SpeedLog").Range("D1").End(xlDown).Offset(1, 0).Value = Sheets("CVTYSpeedSearch").Range("I8") & " " & Range("I9")
'Date
Sheets("SpeedLog").Range("B1").End(xlDown).Offset(1, 0).Value = Date
'Run Time
Sheets("SpeedLog").Range("E1").End(xlDown).Offset(1, 0).Value = Time
'Save File
myFile = ActiveWorkbook.Name
ActiveWorkbook.Save
ActiveWindow.ActivateNext
Do While myFile <> ActiveWorkbook.Name
ActiveWorkbook.Save
ActiveWindow.ActivateNext
My question is do I have to have the above named references to perform the sub on the other machines....(I don't really know what IDM Error or IDM Macro does).