Code for Save As file name help needed "selected" "Active cell"

Javi

Active Member
Joined
May 26, 2011
Messages
440
Hi All,

I'm trying to populate the (File Name) in the save as dialog box with a selected cell, and a specific location "A1". I can get the below code to work with to specific locations "B1" & "A1" just can't seem to find how to use the selected cell as one of the parts of the file name.


Any help would be greatly appreciated thank you

This is the part I cannot figure out " ActiveSheet.Selection"


Code:
Sub SaveWorkbook()
Dim SvName As String
Dim cl As Range
Dim Selection As Range






SvName = ActiveSheet.Selection & " " & ActiveSheet.Range("A1")
Application.Dialogs(xlDialogSaveAs).Show SvName


End Sub


Thanks!!
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Got it !!

Code:
Sub SaveWorkbook()
Dim SvName As String
Dim Selection As Range


SvName = ActiveCell & " " & ActiveSheet.Range("A1")
Application.Dialogs(xlDialogSaveAs).Show SvName


End Sub
 
Upvote 0

Forum statistics

Threads
1,214,834
Messages
6,121,871
Members
449,055
Latest member
excelhelp12345

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