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

$$Excel-Macros$$ saving an excel sheet

2012-02-27 Thread Shankar Bheema
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, accurate thread titles. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and

$$Excel-Macros$$ Saving an Excel sheet as a UTF8 .txt and .csv - have code, need modifications!

2011-06-13 Thread Major Bandwith
Hi all, I have some Excel sheets that I want to save as a UTF8 file in .txt and .csv formats, using a VBA macro. I've found the following code: 'Function saves cText in file, and returns 1 if successful, 0 if not Public Function writeOut(cText As String, file As String) As Integer On Error GoT