View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default Programming Excel "drop-down menu" functions

Do
sFile = InputBox("Filename")
Loop Until sFile < ""
ActiveWorkbook.SaveAs Filename:=sFile & ".xlw", _
FileFormat:=xlExcel4Workbook

What does this have to do with a drop-down menu?

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"DaveG." wrote in message
...
I am trying to program an Excel workbook, so as to minimise the user's

keyboard actions. The actions I am trying to macro/prog. are as follows:-

1. After data has been entered on a worksheet, activate SAVE AS for the

workbook, the user then inserts a "name" for the file (XLW extension
inserted automatically), accepts.

2. On completion of the above, designated cells are "cleared" and workbook

SAVED with a predefined name & extension.

Purpose is to eliminate possible user errors. Any assistance gratfully

rec'd.

Dave G.