View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
karma karma is offline
external usenet poster
 
Posts: 2
Default How to run a process in the background?

On Feb 11, 4:58 pm, wrote:
I have a macro which will create sheets and update its contents.
I have used
applicaiton.screenupdating=false
to have a background process. I still want to update the user whats
happening behind. Perhaps with a progress bar. Is it possible to have
control on one sheet and have the macro running on the background?


Yes, you can display a progress bar while the macro is running. It
does however require you to create a form and you will need to add a
bit of extra code.
You may find this link useful

http://j-walk.com/ss/Excel/tips/tip34.htm

HTH