Macro issue

sodapop

New Member
Joined
Sep 14, 2008
Messages
20
Hi,

Everyday I receive an open call list. My macro works great if I run ccleaner before hand. If I run the macro on different days it errors. I know it is hanging up on the title CRM Activity Report. Is there a way to compensate for the title changing to multiple copies? IE CRM Activity Report (2).





' Sort Data
ActiveWorkbook.Worksheets("CRM Activity Report").Sort.SortFields.Clear
ActiveWorkbook.Worksheets("CRM Activity Report").Sort.SortFields.Add Key:= _
Range("C2:C99"), SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:= _
xlSortNormal


I have been using excelisfun on youtube to learn more and have found out that I can clean up the macro a little bit IE range.


Thanks for the help.
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
U can trial this. HTH. Dave
Code:
Dim sht As Worksheet, ShtName As String
For Each sht In ThisWorkbook.Sheets
If Left(sht.Name, 19) = "CRM Activity Report" Then
ShtName = sht.Name
Exit For
End If
Next sht

' Sort Data
ActiveWorkbook.Worksheets(ShtName).Sort.SortFields.Clear
ActiveWorkbook.Worksheets(ShtName).Sort.SortFields.Add Key:= _
ActiveWorkbook.Worksheets(ShtName).Range("C2:C99"), _
SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
 
Upvote 0

Forum statistics

Threads
1,213,507
Messages
6,114,029
Members
448,543
Latest member
MartinLarkin

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top