Macro is causing workbook to repair frequently

missing string

Board Regular
Joined
Dec 20, 2011
Messages
53
I posted up a couple of months ago asking for help with a workbook: https://www.mrexcel.com/forum/excel-questions/1019628-workbook-has-repair-about-25-time-i-open.html

I remade the workbook from scratch as suggested in the thread and deliberately didn't include the macro from the previous book to see if that had an impact. I used the workbook without the macro for a few weeks and I got no error messages when opening it. I put the macro back in today and it came up with the same error message when I re-opened it:

https://imgur.com/a/GzWTJ

So I now know with 100% certainty that something in the macro is causing the error message. However, I'm not that skilled with macros and got some help online with this, so I don't understand what the issue is - any help would be much appreciated.

Code:
Sub Update()'
' Update Macro
'
Application.ScreenUpdating = False


Sheets("US Dollar").Select
    Range("A1").Select
    Selection.QueryTable.Refresh BackgroundQuery:=False
    Application.Wait (Now + TimeValue("0:00:02"))
Sheets("Euro").Select
    Range("A1").Select
    Selection.QueryTable.Refresh BackgroundQuery:=False
    Application.Wait (Now + TimeValue("0:00:02"))
Sheets("Swiss Franc").Select
    Range("A1").Select
    Selection.QueryTable.Refresh BackgroundQuery:=False
    Application.Wait (Now + TimeValue("0:00:02"))
Sheets("Hong Kong Dollar").Select
    Range("A1").Select
    Selection.QueryTable.Refresh BackgroundQuery:=False
    Application.Wait (Now + TimeValue("0:00:02"))
Sheets("Australian Dollar").Select
    Range("A1").Select
    Selection.QueryTable.Refresh BackgroundQuery:=False
    Application.Wait (Now + TimeValue("0:00:02"))
Sheets("Canadian Dollar").Select
    Range("A1").Select
    Selection.QueryTable.Refresh BackgroundQuery:=False
    Application.Wait (Now + TimeValue("0:00:02"))
Sheets("Danish Krone").Select
    Range("A1").Select
    Selection.QueryTable.Refresh BackgroundQuery:=False
    Application.Wait (Now + TimeValue("0:00:02"))




Sheets("Future").Select
    LastRow& = Range("A:C").Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
    Range("C8").Select
    Selection.AutoFill Destination:=Range("C8:C" & LastRow)
    
    Range("C8:C" & LastRow).Select
    ActiveWorkbook.Worksheets("Future").AutoFilter.Sort.SortFields.Clear
    ActiveWorkbook.Worksheets("Future").AutoFilter.Sort.SortFields.Add Key:=Range( _
        "C7:C" & LastRow), SortOn:=xlSortOnValues, Order:=xlDescending, DataOption:= _
        xlSortNormal
    With ActiveWorkbook.Worksheets("Future").AutoFilter.Sort
        .Header = xlYes
        .MatchCase = False
        .Orientation = xlTopToBottom
        .SortMethod = xlPinYin
        .Apply
    End With
    Range("A1").Select




Sheets("Alternatives").Select
    LastRow2& = Range("A:C").Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
    Range("C3").Select
    Selection.AutoFill Destination:=Range("C3:C" & LastRow2)
    
    ActiveWorkbook.Worksheets("Alternatives").Sort.SortFields.Add Key:=Range( _
        "H3:H" & LastRow2), SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:= _
        xlSortNormal
    ActiveWorkbook.Worksheets("Alternatives").Sort.SortFields.Add Key:=Range( _
        "C3:C" & LastRow2), SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:= _
        xlSortNormal
    With ActiveWorkbook.Worksheets("Alternatives").Sort
        .SetRange Range("B2:L" & LastRow2)
        .Header = xlYes
        .MatchCase = False
        .Orientation = xlTopToBottom
        .SortMethod = xlPinYin
        .Apply
    End With
    Range("A1").Select




Sheets("List").Select
    LastRow3& = Range("A:C").Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
    Range("C8").Select
    Selection.AutoFill Destination:=Range("C8:C" & LastRow3)
    
    Range("C8:C" & LastRow3).Select
    ActiveWorkbook.Worksheets("List").AutoFilter.Sort.SortFields.Clear
    ActiveWorkbook.Worksheets("List").AutoFilter.Sort.SortFields.Add Key:=Range( _
        "C7:C" & LastRow3), SortOn:=xlSortOnValues, Order:=xlDescending, DataOption:= _
        xlSortNormal
    With ActiveWorkbook.Worksheets("List").AutoFilter.Sort
        .Header = xlYes
        .MatchCase = False
        .Orientation = xlTopToBottom
        .SortMethod = xlPinYin
        .Apply
    End With


Range("A1").Select
    
Application.ScreenUpdating = True


End Sub
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Happened to me once. I notice that you have omitted to clear the sort fields in the "Alternative Sheet" section. Check the sort on the ribbon, you'll probably have dozens of sort levels.
 
Upvote 0
Happened to me once. I notice that you have omitted to clear the sort fields in the "Alternative Sheet" section. Check the sort on the ribbon, you'll probably have dozens of sort levels.

Not dozens, but there were duplicates, looks like this is the problem - thanks for the reply!
 
Upvote 0

Forum statistics

Threads
1,216,098
Messages
6,128,812
Members
449,468
Latest member
AGreen17

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