Hi Mandeep,
I was wondering all of the data that your macro produces on a daily basis amounts to a large table which I then append to the master table which has the entire months’ worth of data, then I update the range on my Pivot table and RefreshAll to update the Pivot table; is this something that can be automated with a macro and if so would you be willing to help with it? Thank you again for your help. The Best, Mike From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On Behalf Of Mandeep baluja Sent: Monday, March 16, 2015 11:35 PM To: excel-macros@googlegroups.com Subject: Re: $$Excel-Macros$$ Re: vba recorded macro not working Dear Mike, Thank u so much for your Appreciation. It's a pleasure to help anyone because it expands my knowledge about VBA , The thing is I am a beginner and wish i will reach at a position where can i help everyone in anyway it can be and want to reach at a higher Package in a firm. wish you luck. Regards, MandeepBaluja Learningzmypassion. https://www.facebook.com/VBAEXCELSQL?ref=hl https://www.linkedin.com/profile/view?id=312532939 On Monday, 16 March 2015 23:46:40 UTC+5:30, Mike B wrote: Hi Mandeep, Thank you, thank you again for your excellent help. Is there anything I can do for you to show my appreciation? I was really stuck and you bailed me out, I tried severl different ways and could not get it to work. Thank you, Again. The Best, Mike Barrett From: excel-...@googlegroups.com <javascript:> [mailto:excel-...@googlegroups.com <javascript:> ] On Behalf Of Mandeep baluja Sent: Monday, March 16, 2015 4:48 AM To: excel-...@googlegroups.com <javascript:> Subject: $$Excel-Macros$$ Re: vba recorded macro not working Run this code in your data Sub Test() With Application .ScreenUpdating = False .DisplayAlerts = False End With Dim lr As Long lr = ActiveSheet.Cells(Rows.Count, 3).End(xlUp).Row Set Rng = Range("C1:C" & lr) Debug.Print Rng.Address For Each Cell In Rng If Left(Cell.Value, 5) = "Estab" Then estab = Cell ElseIf Left(Cell.Value, 2) <> "CG" Then temp = Cell Debug.Print temp Else Debug.Print Len(estab) Cell.Offset(0, -2).Value = Trim(Right(estab, Len(estab) - 14)) Cell.Offset(0, -1).Value = Trim(Right(temp, Len(temp) - 31)) End If Next ActiveSheet.Range("C3:C" & lr).AutoFilter field:=1, Criteria1:="<>*CG*" ActiveSheet.Range("C2:C" & lr).SpecialCells(xlCellTypeVisible).EntireRow.Delete End Sub -- Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ https://www.facebook.com/discussexcel FORUM RULES 1) Use concise, accurate thread titles. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get quick attention or may not be answered. 2) Don't post a question in the thread of another member. 3) Don't post questions regarding breaking or bypassing any security measure. 4) Acknowledge the responses you receive, good or bad. 5) Jobs posting is not allowed. 6) Sharing copyrighted material and their links is not allowed. NOTE : Don't ever post confidential data in a workbook. Forum owners and members are not responsible for any loss. --- You received this message because you are subscribed to a topic in the Google Groups "MS EXCEL AND VBA MACROS" group. To unsubscribe from this topic, visit https://groups.google.com/d/topic/excel-macros/BxB4QfFrdl4/unsubscribe. To unsubscribe from this group and all its topics, send an email to excel-macros...@googlegroups.com <javascript:> . To post to this group, send email to excel-...@googlegroups.com <javascript:> . Visit this group at http://groups.google.com/group/excel-macros. For more options, visit https://groups.google.com/d/optout. -- Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ https://www.facebook.com/discussexcel FORUM RULES 1) Use concise, accurate thread titles. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get quick attention or may not be answered. 2) Don't post a question in the thread of another member. 3) Don't post questions regarding breaking or bypassing any security measure. 4) Acknowledge the responses you receive, good or bad. 5) Jobs posting is not allowed. 6) Sharing copyrighted material and their links is not allowed. NOTE : Don't ever post confidential data in a workbook. Forum owners and members are not responsible for any loss. --- You received this message because you are subscribed to a topic in the Google Groups "MS EXCEL AND VBA MACROS" group. To unsubscribe from this topic, visit https://groups.google.com/d/topic/excel-macros/BxB4QfFrdl4/unsubscribe. To unsubscribe from this group and all its topics, send an email to excel-macros+unsubscr...@googlegroups.com <mailto:excel-macros+unsubscr...@googlegroups.com> . To post to this group, send email to excel-macros@googlegroups.com <mailto:excel-macros@googlegroups.com> . Visit this group at http://groups.google.com/group/excel-macros. For more options, visit https://groups.google.com/d/optout. -- Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ https://www.facebook.com/discussexcel FORUM RULES 1) Use concise, accurate thread titles. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get quick attention or may not be answered. 2) Don't post a question in the thread of another member. 3) Don't post questions regarding breaking or bypassing any security measure. 4) Acknowledge the responses you receive, good or bad. 5) Jobs posting is not allowed. 6) Sharing copyrighted material and their links is not allowed. NOTE : Don't ever post confidential data in a workbook. Forum owners and members are not responsible for any loss. --- You received this message because you are subscribed to the Google Groups "MS EXCEL AND VBA MACROS" group. To unsubscribe from this group and stop receiving emails from it, send an email to excel-macros+unsubscr...@googlegroups.com. To post to this group, send email to excel-macros@googlegroups.com. Visit this group at http://groups.google.com/group/excel-macros. For more options, visit https://groups.google.com/d/optout.