$$Excel-Macros$$ Re: Inserting Copied cells multiple times

2014-04-15 Thread Muddan Madhu
Sub ReptRows() Dim I As Integer, X As Integer I = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).Row For X = I To 2 Step -1 ActiveSheet.Cells(X + 1, "A").Select ActiveCell.EntireRow.Resize(50).Insert ActiveCell.Offset(-1, 0).EntireRow.Resize(51).Select Selection.FillDown Next X End Su

$$Excel-Macros$$ inserting missing date in data

2014-04-15 Thread shailesh Shah
i have found a macro from the internet to add missing date in the data. its not working in excel 2010. it is giving type mismatch error. would appreciate if i get guided. Option Explicit Sub AddMissingDates() 'JBeaucaire (12/13/2009) Dim LR As Long, i As Long Application.ScreenUpdating = Fa

$$Excel-Macros$$ Inserting Copied cells multiple times

2014-04-15 Thread Puneeth Reddy Ambati
Hi, I need some help in excel using Macros. I need to insert a row multiple times. For example Present : Name Place Number Adam FL 1234 Bob AU 5678 What I need: Name Place Number Adam FL 1234 Adam FL 1234 Adam FL 1234 Adam

Re: $$Excel-Macros$$ Need help to filter text by function

2014-04-15 Thread vba
You may try this.. =SUBSTITUTE(SUBSTITUTE(B3,",,",""),", ,","") Thx On Tue, Apr 15, 2014 at 2:05 PM, Ashish Bhalara wrote: > Thanks to reply but the "Mud Flap-Vista" is a complete word, there are no > need comma between "Mud" & "Flap-Vista". > I want to remove only last commas, kindly suggest

Re: $$Excel-Macros$$ Need help to find the missing emp id on particular date

2014-04-15 Thread Paul Schreiner
I use it for a wide variety of purposes.   Sometimes I use it like a pseudo-index. Say I have a large number of records (I routinely have lists of 90,000 rows) and I'm attempting to report on a series of entries. looping through these rows multiple times is very time consuming. I used to load the r

Re: $$Excel-Macros$$ Need VBA Code to extract pdf file from URL.

2014-04-15 Thread pankaj khairanar
Hi Ashish, Thank you so much for your reply. Just I went trhough your code , and using this code I can only able to extract the single file at a time. Is there any possible way to extract all the pdf's mentioned in excel sheet in a single button click? Regards, Pankaj On Thursday, April

Re: $$Excel-Macros$$ Need help to filter text by function

2014-04-15 Thread Ashish Bhalara
Thanks to reply but the "Mud Flap-Vista" is a complete word, there are no need comma between "Mud" & "Flap-Vista". I want to remove only last commas, kindly suggest if possible. Regards. Ashish Bhalara 9624111822 P*Please do not print this email unless it is absolutely necessary. Spread environme

Re: $$Excel-Macros$$ Need help to filter text by function

2014-04-15 Thread vba
Try this =SUBSTITUTE(TRIM(SUBSTITUTE(A1,","," "))," ",",") where cell A1 contains your data.. On Tue, Apr 15, 2014 at 1:06 PM, Ashish Bhalara wrote: > Dear experts > > I have a text as per below. > Matting, Mud Flap-Vista, , , ,,, > > I want remove extra comma from the end as below result b

$$Excel-Macros$$ Need help to filter text by function

2014-04-15 Thread Ashish Bhalara
Dear experts I have a text as per below. Matting, Mud Flap-Vista, , , ,,, I want remove extra comma from the end as below result by function. Matting, Mud Flap-Vista Kindly suggest proper function for it. Regards. Ashish Bhalara 9624111822 P*Please do not print this email unless it is absol