Thread
:
cell value as a filename
View Single Post
#
2
Posted to microsoft.public.excel.misc
Nick Hodge
Posts: n/a
cell value as a filename
Not sure I understand you, but if you are trying to force a 'save as...'
opposed to a save then you can use the workbook_save() event
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As
Boolean)
If SaveAsUI Then
'do what you want here as user pressed Save as...
Exit Sub
End If
'cancel the save if user pressed save
Cancel = True
End Sub
--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
www.nickhodge.co.uk
HIS
"dunescratcher"
wrote in message
news:dunescratcher.25pc1c_1144090210.1796@excelfor um-nospam.com...
Hi all,
An earlier thread(help required with using cells to generate a
filename) nearly helped but not quite.
I want to use a cell value as a filename with the workbook to be saved
in a specific folder but I want the Dialog box to open first with the
filename in it so the user has to actually click on Save As.
So far, so bad: what I have got doesn’t work at all and I’d
be very grateful for any help at all
Many thanks in advance,
DS
--
dunescratcher
------------------------------------------------------------------------
dunescratcher's Profile:
http://www.excelforum.com/member.php...o&userid=33114
View this thread:
http://www.excelforum.com/showthread...hreadid=529322
Reply With Quote