I broke Save As

iwilli

New Member
Joined
Jan 31, 2012
Messages
43
Still learning. I'm trying to create a Macro that several different people will use on different computers. The problem is if I use the "Save As" then it saves the files to my user. This causes the macro not to work on anyone's computer other than mine. What am i doing wrong?

Code:
Sub EAR_UPS_CONTACT_IMPORT()
'
' EAR_UPS_CONTACT_IMPORT Macro
' Creates the .csv file to upload to UPS for EARs
'

'
    Sheets("CSEXPORT").Select
    Cells.Select
    Selection.Value = Selection.Value
    Range("A1").Select
    ActiveWorkbook.SaveAs Filename:="C:\Users\iwilli\Desktop\EAR_UPS_Import.csv" _
        , FileFormat:=xlCSV, CreateBackup:=False
End Sub
 
Here is a newbies response. "How did you know that?" no seriously how did you know that? and is there a way around it?
 
Upvote 0
A W7 user's desktop is C:\Users\Bob\Desktop

And XP users's desktop is C:\Documents and Settings\Bob\Desktop

Where do you wnat the file saved -- always on the users's desktop?
 
Upvote 0
I was going for the simplest place it can be saved. The .csv file will be used right away and then never needed again.
 
Upvote 0
This is finally what had to be done to solve it.

Code:
Sub EAR_UPS_CONTACT_IMPORT()
'
' EAR_UPS_CONTACT_IMPORT Macro
' Creates the .csv file to upload to UPS for EARs
'

'
    Sheets("CSEXPORT").Select
'    Cells.Select
'    Selection.Value = Selection.Value
Dim sPath As String
sPath = Application.GetSaveAsFilename
ActiveWorkbook.SaveAs Filename:=sPath _
        , FileFormat:=xlCSV, CreateBackup:=False
End Sub
and when it asks for the path name I have to type the .csv and it works.
 
Upvote 0

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top