$$Excel-Macros$$ kindly suggest me how can I Unhide all the hide sheet in a single go.

2011-08-24 Thread jayendra gaurav
Team, I have hide 50 sheet in a work book kindly suggest me how can I Unhide all the hidden sheet in a single go. -- J.Gaurav Cell - 9327348097 -- -- Some important links for excel users: 1. Follow us on TWITTER

Re: $$Excel-Macros$$ kindly suggest me how can I Unhide all the hide sheet in a single go.

2011-08-24 Thread ashish koul
Sub etst() Dim ws As Worksheet For Each ws In ActiveWorkbook.Sheets On Error Resume Next ws.Visible = xlSheetVisible Next End Sub On Wed, Aug 24, 2011 at 12:54 PM, jayendra gaurav wrote: > > Team, > > I have hide 50 sheet in a work book kindly suggest me how can I Unhide all > the hidden s

Re: $$Excel-Macros$$ kindly suggest me how can I Unhide all the hide sheet in a single go.

2011-08-24 Thread NOORAIN ANSARI
Dear Jayendra, Please try below Code... Sub Unhide_all_sheets() Dim c, i As Integer application.ScreenUpdating=False c = ActiveWorkbook.Sheets.Count For i = 1 To c Sheets(i).Visible = True Next i application.ScreenUpdating=False End Sub On Wed, Aug 24, 2011 at 12:54 PM, jayendra gaurav < j

RE: $$Excel-Macros$$ kindly suggest me how can I Unhide all the hide sheet in a single go.

2011-08-24 Thread Rajan_Verma
Try this Sub UnhideAllHideen() For each sh in ActiveWorkbook.Sheets If sh.visible=False then sh.visible=True Next End Sub From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On Behalf Of ashish koul Sent: Wednesday, August 24, 2011 1:17 PM To: exce

$$Excel-Macros$$ ******* JOB OPENING ************ IN BANGALORE

2011-08-24 Thread Santhosh Kumar M K
Dear Sir/Madam, We have few openings in our company and looking for the resources with excellent Excel Knowledge and good in communication (Written & Spoken English). Pls let us know if you have any candidates to fulfill our requirement. Appreciate your immediate response in this regard. Tha

Re: $$Excel-Macros$$ kindly suggest me how can I Unhide all the hide sheet in a single go.

2011-08-24 Thread Manoj kumar
u can try this code... *Sub UnhideAllSheets()* *Dim wsSheet As Worksheet* * * *For Each wsSheet In ActiveWorkbook.Worksheets* *wsSheet.Visible = xlSheetVisible* *Next wsSheet* *End Sub* Best, MKV On Wed, Aug 24, 2011 at 12:54 PM, jayendra gaurav wrote: > > Team,

Re: $$Excel-Macros$$ how to delete multiple row & columns

2011-08-24 Thread dguillett1
It should work as desired for the active sheet. Try it. I need to correct lr to lc as below. Sub cleanrowsandcolumnsSAS() lr = Cells.Find("*", Cells(Rows.Count, Columns.Count) _ , , , xlByRows, xlPrevious).Row + 1 lc = Cells.Find("*", Cells(Rows.Count, Columns.Count) _ , , , xlByColumns, xlPrevio

Re: $$Excel-Macros$$ Need a Formula or Macro

2011-08-24 Thread dguillett1
If you didn't solve this, I'll take a look? -Original Message- From: Baby Patel Sent: Thursday, August 18, 2011 8:29 AM To: excel-macros@googlegroups.com Subject: Re: $$Excel-Macros$$ Need a Formula or Macro Hi All, Please find the attchement. All these data are here in the zipped fil

$$Excel-Macros$$ Error - "**PASTE EXCEL CELLS HERE**"

2011-08-24 Thread Chandra Shekar
Hello, I am getting "**PASTE EXCEL CELLS HERE**" error(Range Not found) when I send mail by using vba code. Please let me know whats the error is. Thanks, Chandru -- -- Some important links for excel users: 1. Foll

Re: $$Excel-Macros$$ Need a Formula or Macro

2011-08-24 Thread Baby Patel
thanks for your assistance. Please take a look. Earlier did not work. Thanks, Smriti On 8/24/11, dguillett1 wrote: > If you didn't solve this, I'll take a look? > > -Original Message- > From: Baby Patel > Sent: Thursday, August 18, 2011 8:29 AM > To: excel-macros@googlegroups.com > Subj

Re: $$Excel-Macros$$ User Defined formula in Excel

2011-08-24 Thread XLS S
Hey Atul, Please find the below links, http://www.ozgrid.com/VBA/Functions.htm http://www.codeproject.com/KB/macros/excelmvf.aspx http://www.vertex42.com/ExcelArticles/user-defined-functions.html On Tue, Aug 23, 2011 at 11:42 PM, Atul vishwakarma wrote: > Hi Rajan, > > Due to some reason I was

Re: $$Excel-Macros$$ Error - "**PASTE EXCEL CELLS HERE**"

2011-08-24 Thread XLS S
please send vba code... On Wed, Aug 24, 2011 at 7:52 PM, Chandra Shekar < chandrashekarb@gmail.com> wrote: > Hello, > > I am getting "**PASTE EXCEL CELLS HERE**" error(Range Not found) when I > send mail by using vba code. Please let me know whats the error is. > > Thanks, > > Chandru > >

$$Excel-Macros$$ Copy the Last Row (Values) of Multiple Sheets to a Summary Sheet

2011-08-24 Thread Clint Stevens
Help: I have 40 spreadsheets in one workbook. I update the spreadsheets daily. I want the last row (Values) on all 40 spreadsheets copied to a summary sheet everyday after I update the data. How do you do this? After the data is summarized and I review it I will then delete the data in the summary

Re: $$Excel-Macros$$ Copy the Last Row (Values) of Multiple Sheets to a Summary Sheet

2011-08-24 Thread ashish koul
Hi Can you attach the sample file . also do you like to copy complete row or any specific cells only On Wed, Aug 24, 2011 at 11:15 PM, Clint Stevens wrote: > Help: I have 40 spreadsheets in one workbook. I update the > spreadsheets daily. I want the last row (Values) on all 40 > spreadsheets c

Re: $$Excel-Macros$$ Error - "**PASTE EXCEL CELLS HERE**"

2011-08-24 Thread Chandra Shekar
Hello, Please find below VBA code. Thanks Option Compare Text Dim NSession As Object Dim NDatabase As Object Dim NUIWorkSpace As Object Dim NDoc As Object Dim NUIdoc As Object Sub email_notification(ByVal wrkbk_nm As String, ByVal notes_id As String) ' source mrexcel Set NSe