Its been bugging me for a couple of days now.
I NEED AN ANSWER!!!!
1. I understand that i will require a so called "loop" to make this possible in the usual way, but am also, quite certain that it will work without
2. I understand that there is a simpler way of displaying progress i.e. through the means of displaying a 'wait' etc message in Excel's own status bar, BUT, i could really do with a 'progress Bar'
Here's what i have
after phaffing around the internet and trial and error at work!
My VBA sub (which simply refreshes various Pivots)
Sheets("Base_P&L").Select
Range("G6").Select
ActiveSheet.PivotTables("PivotTable2").PivotCache.Refresh
Sheets("COS").Select
Range("F6").Select
ActiveSheet.PivotTables("PivotTable3").PivotCache.Refresh
Sheets("Cost_Centre").Select
Range("E6").Select
ActiveSheet.PivotTables("PivotTable4").PivotCache.Refresh
Sheets("Overheads").Select
Range("C6").Select
ActiveSheet.PivotTables("PivotTable5").PivotCache.Refresh
Sheets("Overheads_Summary").Select
Range("B6").Select
ActiveSheet.PivotTables("PivotTable5").PivotCache.Refresh
Sheets("Trial_Balance_Data").Select
Range("D6").Select
ActiveSheet.PivotTables("PivotTable1").PivotCache.Refresh
Sheets("Balance_Sheet_Data").Select
Range("D6").Select
ActiveSheet.PivotTables("PivotTable6").PivotCache.Refresh
Sheets("Cover_Sheet").Select
Range("A1").Select
End Sub
What I also have;
is Andy Popes Progress Bar example http://spreadsheetpage.com/index.php...ess_indicator/
(of which i have no idea where to put in my sub)!!!
and the other bits to Andy Pope's Progress example;
Private Sub UserForm_activate()
Call Main
End Sub
&Sub ShowDialog() UserForm1.LabelProgress.Width = 0 UserForm1.ShowEnd SubI have created the Userform as instructed. Qustion - - where do i place my sub???and will it work as it is not a loop?
I NEED AN ANSWER!!!!
1. I understand that i will require a so called "loop" to make this possible in the usual way, but am also, quite certain that it will work without
2. I understand that there is a simpler way of displaying progress i.e. through the means of displaying a 'wait' etc message in Excel's own status bar, BUT, i could really do with a 'progress Bar'
Here's what i have
after phaffing around the internet and trial and error at work!
My VBA sub (which simply refreshes various Pivots)
Sheets("Base_P&L").Select
Range("G6").Select
ActiveSheet.PivotTables("PivotTable2").PivotCache.Refresh
Sheets("COS").Select
Range("F6").Select
ActiveSheet.PivotTables("PivotTable3").PivotCache.Refresh
Sheets("Cost_Centre").Select
Range("E6").Select
ActiveSheet.PivotTables("PivotTable4").PivotCache.Refresh
Sheets("Overheads").Select
Range("C6").Select
ActiveSheet.PivotTables("PivotTable5").PivotCache.Refresh
Sheets("Overheads_Summary").Select
Range("B6").Select
ActiveSheet.PivotTables("PivotTable5").PivotCache.Refresh
Sheets("Trial_Balance_Data").Select
Range("D6").Select
ActiveSheet.PivotTables("PivotTable1").PivotCache.Refresh
Sheets("Balance_Sheet_Data").Select
Range("D6").Select
ActiveSheet.PivotTables("PivotTable6").PivotCache.Refresh
Sheets("Cover_Sheet").Select
Range("A1").Select
End Sub
What I also have;
is Andy Popes Progress Bar example http://spreadsheetpage.com/index.php...ess_indicator/
(of which i have no idea where to put in my sub)!!!
and the other bits to Andy Pope's Progress example;
Private Sub UserForm_activate()
Call Main
End Sub
&Sub ShowDialog() UserForm1.LabelProgress.Width = 0 UserForm1.ShowEnd SubI have created the Userform as instructed. Qustion - - where do i place my sub???and will it work as it is not a loop?