Code copying data before query has refreshed

Bagsy

Active Member
Joined
Feb 26, 2005
Messages
467
Office Version
  1. 365
Platform
  1. Windows
I wonder if anybody could just look at my code. (MS Office 365)

I am copying data from a sheet that runs a query (which was created by somebody else). Everything works great except when I come to copy the column of data I require it always copies before the sheet is refreshed, regardless of any wait time I set. I have timed how long it take to refresh and it was around 18 secs. I have set my wait time up to 60 secs and it still does not work.

When I run to a break point at (WB1.Activate) I look at the workbook I am copying from and I can see the copy dotted lines around the column, then I see the sheet refresh and the data change, so its copying before the data has refreshed, I wonder if my line of code for refreshing the query is correct.

Any help is appreciated
VBA Code:
Sub CheckIfDispatched()

Dim WB1 As Workbook
Dim WB2 As Workbook

'Application.ScreenUpdating = False
'Application.DisplayAlerts = False

' Capture current workbook
Set WB1 = ActiveWorkbook

'***************************************

Dim a As Integer
a = Sheets("Sheet2").Range("E" & Rows.Count).End(xlUp).Row
Sheets("Sheet2").Range("E2:E" & a).ClearContents

'***************************************

' Opening the Open SO Items register
Workbooks.Open Filename:="L:\EMAX\EMAX REPORTS\Open SO Items.xlsx", ReadOnly:=True

' Capture new workbook
Set WB2 = ActiveWorkbook
Sheets("Open SO Items").Select
Sheets("Open SO Items").ShowAllData 'Clear All Filters for entire Table
Selection.ListObject.QueryTable.Refresh BackgroundQuery:=True
'ActiveWorkbook.RefreshAll
Application.Wait (Now + TimeValue("0:00:60"))

'***************************************

'Copying the SO numbers
a = Sheets("Open SO Items").Range("A" & Rows.Count).End(xlUp).Row
Sheets("Open SO Items").Range("A2:A" & a).Copy

'***************************************

' Go back to original workbook
WB1.Activate
'Pasting the SO numbers
Sheets("Sheet2").Range("E2").PasteSpecial xlPasteValues
Application.CutCopyMode = False

'**************************************

'comparing SO numbers, to see if the SO number is still on the open SO items register, otherwise it may have been cancelled or dispatched
Dim Cl As Range
Dim Dic As Object
Set Dic = CreateObject("scripting.dictionary")

With Sheets("Sheet2")
For Each Cl In .Range("E2", .Range("E" & Rows.Count).End(xlUp))
Dic(Cl.Value) = Array(Cl, Cl.Offset(, 1).Value)
Next Cl
End With

With Sheets("Sheet1")
For Each Cl In .Range("A2", .Range("A" & Rows.Count).End(xlUp))
If Not Dic.Exists(Cl.Value) Then
Cl.Offset(0, 1).Interior.Color = vbGreen
End If

Next Cl

End With
WB2.Close False ' closing the Open SO items register
'Application.DisplayAlerts = True
Application.ScreenUpdating = True

End Sub
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
In case this is any help to anyone I have managed to solve the problem regarding refreshing the query, with a great deal of searching. I changed this line
VBA Code:
Selection.ListObject.QueryTable.Refresh BackgroundQuery:=True
To
VBA Code:
Selection.ListObject.QueryTable.Refresh BackgroundQuery:=False
I'm not sure what the True & False parts of the refresh actually do but it worked ok. Full code below in case it helps anyone
VBA Code:
Sub CheckIfDispatched()
    Dim WB1 As Workbook
    Dim WB2 As Workbook
    Application.ScreenUpdating = False
    
'   Capture current workbook
    Set WB1 = ActiveWorkbook

    '***************************************
    Dim a As Integer   'Clearing old data from sheet 2 of the cert pack tracker workbook
    a = Sheets("Sheet2").Range("E" & Rows.Count).End(xlUp).Row
    Sheets("Sheet2").Range("E2:E" & a).ClearContents
    
    '***************************************
'   Opening the Open SO Items register
    Workbooks.Open Filename:="L:\EMAX\EMAX REPORTS\Open SO Items.xlsx", ReadOnly:=True

'   Capture new workbook
    Set WB2 = ActiveWorkbook
            Sheets("Open SO Items").Select
        Sheets("Open SO Items").ShowAllData 'Clear All Filters for entire Table
    Selection.ListObject.QueryTable.Refresh BackgroundQuery:=False
    
  '***************************************
    'Copying the SO numbers
    a = Sheets("Open SO Items").Range("A" & Rows.Count).End(xlUp).Row
    Sheets("Open SO Items").Range("A2:A" & a).Copy
    
   '***************************************
    '   Go back to original workbook
    WB1.Activate
    'Pasting the SO numbers
    Sheets("Sheet2").Range("E2").PasteSpecial xlPasteValues
    Application.CutCopyMode = False
    
    '**************************************
    'comparing SO numbers, to see if the SO number is still on the open SO items register, otherwise it may have been cancelled or dispatched
    Dim Cl As Range
    Dim Dic As Object

    Set Dic = CreateObject("scripting.dictionary")
    With Sheets("Sheet2")
        For Each Cl In .Range("E2", .Range("E" & Rows.Count).End(xlUp))
            Dic(Cl.Value) = Array(Cl, Cl.Offset(, 1).Value)
        Next Cl
    End With
    With Sheets("Sheet1")
        For Each Cl In .Range("A2", .Range("A" & Rows.Count).End(xlUp))
            If Not Dic.Exists(Cl.Value) Then
               Cl.Offset(0, 1).Interior.Color = vbGreen
            End If
        Next Cl
    End With
    
 WB2.Close False ' closing the Open SO items register
  Application.ScreenUpdating = True

  End Sub
 
Upvote 0

Forum statistics

Threads
1,216,030
Messages
6,128,405
Members
449,448
Latest member
Andrew Slatter

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