VBA Progress Bar for Sub which Calls other Subs

Flash'

New Member
Joined
May 30, 2013
Messages
10
Morning

I have a main sub which calls 11 other subs whithin my module to run all my code

Code:
Sub Runall()

'calling all my subs
Call UniqueDates
Call CallsTaken
Call CreateCol
Call AHT
Call WrapUp
Call HighWrapColumn
Call HighWCount
Call HighWrapPercent
Call ShortCalls
Call SortTableCalls
Call ExtractHWCalls
 
End Sub

What im trying to do is create a progress bar or some form of userform message status which shows how far along it has gone
i.e
Updating
-Calculating AHT.. (for which whichever stage it is at)
or simply
Progress 0-100%

Tried looking online but quite new to VBA so cant find an example of how to do this with my 'Runall' sub

not looking for a bottomleft statusbar update as want it to appear a message on screen

all help would be greatly appreciated! Thank you
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.

Forum statistics

Threads
1,214,908
Messages
6,122,187
Members
449,072
Latest member
DW Draft

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