Re: $$Excel-Macros$$ saving an excel sheet

2012-02-27 Thread Shankar Bheema
thank you On Mon, Feb 27, 2012 at 5:57 PM, NOORAIN ANSARI wrote: > http://www.mrexcel.com/forum/showthread.php?t=354 > > On Mon, Feb 27, 2012 at 5:00 PM, Shankar Bheema wrote: > >> is it possible to save a particular worksheet of a workbook with a save >> command button on an userform ? >> >> --

Re: $$Excel-Macros$$ saving an excel sheet

2012-02-27 Thread NOORAIN ANSARI
http://www.mrexcel.com/forum/showthread.php?t=354 On Mon, Feb 27, 2012 at 5:00 PM, Shankar Bheema wrote: > is it possible to save a particular worksheet of a workbook with a save > command button on an userform ? > > -- > FORUM RULES (986+ members already BANNED for violation) > > 1) Use concise

Re: $$Excel-Macros$$ saving an excel sheet

2012-02-27 Thread Abhishek Jain
For workbook - ActiveWorkbook.Save For active sheet only - ActiveSheet.Select ActiveSheet.Copy ActiveSheet.SaveAs Filename:="YOUR DIR" & YOUR FILENAME & ".xls" HTH Abhishek On Mon, Feb 27, 2012 at 5:00 PM, Shankar Bheema wrote: > is it possible to save a particular worksheet of a workbook w