Current code:
Sub Refresh()
ThisWorkbook.RefreshAll
Call Hide_Blank_Rows
End Sub
My issue is that its calling the Hide_Blank_Rows macro before the PowerQuery refresh is complete. I notice that it takes about 10 seconds from the time the refresh is initiated to the time it actually starts refreshing. Or, its refreshing so fast, but my sheets are taking a while to begin recalculating their values, that the Hide_Blank_Rows macro is run before the recalculation is complete. I cant tell if its the actual refresh or just the amount of time it takes for all my sheets to recalc.
Sub Refresh()
ThisWorkbook.RefreshAll
Call Hide_Blank_Rows
End Sub
My issue is that its calling the Hide_Blank_Rows macro before the PowerQuery refresh is complete. I notice that it takes about 10 seconds from the time the refresh is initiated to the time it actually starts refreshing. Or, its refreshing so fast, but my sheets are taking a while to begin recalculating their values, that the Hide_Blank_Rows macro is run before the recalculation is complete. I cant tell if its the actual refresh or just the amount of time it takes for all my sheets to recalc.