This is the code I have but it really only works when the user has the L: drive which is not always the case. How do I save a file when I users all have different drive letters? Also why doesn't my error handling work? I feel like I don't fully understand how to structure the error handling. All help is greatly appreciated. Thanks
Code:
On Error GoTo alt
wb.SaveAs "L:\AJ's Inventory Project\McKesson Orders\" & workbookname
Ignoreme = 0
If Ignoreme = 1 Then
alt:
On Error Resume Next
wb.SaveAs "S:\AJ's Inventory Project\McKesson Orders\" & workbookname
End If