#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 181
Default Macro working bar

I have a long macro runing under
Application.ScreenUpdating = False
but I would like to have a bar showing in prograss or some action so user
will know system is working and not freeze up.
Something similar as windows does to show something is happening.

Thanks.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Macro working bar

Application.Cursor = xlWait
Application.StatusBar = "Please wait...<some activity in Progress"


If this post helps click Yes
---------------
Jacob Skaria


"Alberto Ast" wrote:

I have a long macro runing under
Application.ScreenUpdating = False
but I would like to have a bar showing in prograss or some action so user
will know system is working and not freeze up.
Something similar as windows does to show something is happening.

Thanks.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 181
Default Macro working bar

thanks but I got the little circle going around but I can not make it to
stop...

"Jacob Skaria" wrote:

Application.Cursor = xlWait
Application.StatusBar = "Please wait...<some activity in Progress"


If this post helps click Yes
---------------
Jacob Skaria


"Alberto Ast" wrote:

I have a long macro runing under
Application.ScreenUpdating = False
but I would like to have a bar showing in prograss or some action so user
will know system is working and not freeze up.
Something similar as windows does to show something is happening.

Thanks.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Macro working bar

Do you mean; to revert back

Application.Cursor = xlWait
Application.StatusBar = "Please wait...<some activity in Progress"
Application.ScreenUpdating = False

'your code

Application.ScreenUpdating = True
Application.Cursor = xldefault
Application.StatusBar = False

If this post helps click Yes
---------------
Jacob Skaria


"Alberto Ast" wrote:

thanks but I got the little circle going around but I can not make it to
stop...

"Jacob Skaria" wrote:

Application.Cursor = xlWait
Application.StatusBar = "Please wait...<some activity in Progress"


If this post helps click Yes
---------------
Jacob Skaria


"Alberto Ast" wrote:

I have a long macro runing under
Application.ScreenUpdating = False
but I would like to have a bar showing in prograss or some action so user
will know system is working and not freeze up.
Something similar as windows does to show something is happening.

Thanks.

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 181
Default Macro working bar

Have not been able to see the a´plication status bar message.... I even put
the macro on break mode to see if it was going too fast bt never showed up

"Jacob Skaria" wrote:

Do you mean; to revert back

Application.Cursor = xlWait
Application.StatusBar = "Please wait...<some activity in Progress"
Application.ScreenUpdating = False

'your code

Application.ScreenUpdating = True
Application.Cursor = xldefault
Application.StatusBar = False

If this post helps click Yes
---------------
Jacob Skaria


"Alberto Ast" wrote:

thanks but I got the little circle going around but I can not make it to
stop...

"Jacob Skaria" wrote:

Application.Cursor = xlWait
Application.StatusBar = "Please wait...<some activity in Progress"


If this post helps click Yes
---------------
Jacob Skaria


"Alberto Ast" wrote:

I have a long macro runing under
Application.ScreenUpdating = False
but I would like to have a bar showing in prograss or some action so user
will know system is working and not freeze up.
Something similar as windows does to show something is happening.

Thanks.



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Macro working bar

See this:

http://www.cpearson.com/Excel/Progress.htm

Also note at the bottom of the page the reference to other sites with info
on this.

--
Biff
Microsoft Excel MVP


"Alberto Ast" wrote in message
...
I have a long macro runing under
Application.ScreenUpdating = False
but I would like to have a bar showing in prograss or some action so user
will know system is working and not freeze up.
Something similar as windows does to show something is happening.

Thanks.



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Macro working bar

Try the below on top...
Application.DisplayStatusBar =true

If this post helps click Yes
---------------
Jacob Skaria


"Alberto Ast" wrote:

Have not been able to see the a´plication status bar message.... I even put
the macro on break mode to see if it was going too fast bt never showed up

"Jacob Skaria" wrote:

Do you mean; to revert back

Application.Cursor = xlWait
Application.StatusBar = "Please wait...<some activity in Progress"
Application.ScreenUpdating = False

'your code

Application.ScreenUpdating = True
Application.Cursor = xldefault
Application.StatusBar = False

If this post helps click Yes
---------------
Jacob Skaria


"Alberto Ast" wrote:

thanks but I got the little circle going around but I can not make it to
stop...

"Jacob Skaria" wrote:

Application.Cursor = xlWait
Application.StatusBar = "Please wait...<some activity in Progress"


If this post helps click Yes
---------------
Jacob Skaria


"Alberto Ast" wrote:

I have a long macro runing under
Application.ScreenUpdating = False
but I would like to have a bar showing in prograss or some action so user
will know system is working and not freeze up.
Something similar as windows does to show something is happening.

Thanks.

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 181
Default Macro working bar

Thanks... it is already over midnight so I will try it tomorrow.

"T. Valko" wrote:

See this:

http://www.cpearson.com/Excel/Progress.htm

Also note at the bottom of the page the reference to other sites with info
on this.

--
Biff
Microsoft Excel MVP


"Alberto Ast" wrote in message
...
I have a long macro runing under
Application.ScreenUpdating = False
but I would like to have a bar showing in prograss or some action so user
will know system is working and not freeze up.
Something similar as windows does to show something is happening.

Thanks.




  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 181
Default Macro working bar

Thanks I´ll try it tomorrow... too late already... past midnight

"Jacob Skaria" wrote:

Try the below on top...
Application.DisplayStatusBar =true

If this post helps click Yes
---------------
Jacob Skaria


"Alberto Ast" wrote:

Have not been able to see the a´plication status bar message.... I even put
the macro on break mode to see if it was going too fast bt never showed up

"Jacob Skaria" wrote:

Do you mean; to revert back

Application.Cursor = xlWait
Application.StatusBar = "Please wait...<some activity in Progress"
Application.ScreenUpdating = False

'your code

Application.ScreenUpdating = True
Application.Cursor = xldefault
Application.StatusBar = False

If this post helps click Yes
---------------
Jacob Skaria


"Alberto Ast" wrote:

thanks but I got the little circle going around but I can not make it to
stop...

"Jacob Skaria" wrote:

Application.Cursor = xlWait
Application.StatusBar = "Please wait...<some activity in Progress"


If this post helps click Yes
---------------
Jacob Skaria


"Alberto Ast" wrote:

I have a long macro runing under
Application.ScreenUpdating = False
but I would like to have a bar showing in prograss or some action so user
will know system is working and not freeze up.
Something similar as windows does to show something is happening.

Thanks.

  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 181
Default Macro working bar

I finaly saw the status bar but it is at the bottom of the screen... is there
any way to put it in the midle of the screen...?
Thanks

"Jacob Skaria" wrote:

Try the below on top...
Application.DisplayStatusBar =true

If this post helps click Yes
---------------
Jacob Skaria


"Alberto Ast" wrote:

Have not been able to see the a´plication status bar message.... I even put
the macro on break mode to see if it was going too fast bt never showed up

"Jacob Skaria" wrote:

Do you mean; to revert back

Application.Cursor = xlWait
Application.StatusBar = "Please wait...<some activity in Progress"
Application.ScreenUpdating = False

'your code

Application.ScreenUpdating = True
Application.Cursor = xldefault
Application.StatusBar = False

If this post helps click Yes
---------------
Jacob Skaria


"Alberto Ast" wrote:

thanks but I got the little circle going around but I can not make it to
stop...

"Jacob Skaria" wrote:

Application.Cursor = xlWait
Application.StatusBar = "Please wait...<some activity in Progress"


If this post helps click Yes
---------------
Jacob Skaria


"Alberto Ast" wrote:

I have a long macro runing under
Application.ScreenUpdating = False
but I would like to have a bar showing in prograss or some action so user
will know system is working and not freeze up.
Something similar as windows does to show something is happening.

Thanks.



  #11   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 181
Default Macro working bar

I acess the below www and get to see some nice samples but in all the status
bar is at the very bottom of the screen hard to see... can I move it to
midle of the screen...

"T. Valko" wrote:

See this:

http://www.cpearson.com/Excel/Progress.htm

Also note at the bottom of the page the reference to other sites with info
on this.

--
Biff
Microsoft Excel MVP


"Alberto Ast" wrote in message
...
I have a long macro runing under
Application.ScreenUpdating = False
but I would like to have a bar showing in prograss or some action so user
will know system is working and not freeze up.
Something similar as windows does to show something is happening.

Thanks.




  #12   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Macro working bar

No, you can't move the status bar.

--
Biff
Microsoft Excel MVP


"Alberto Ast" wrote in message
...
I acess the below www and get to see some nice samples but in all the
status
bar is at the very bottom of the screen hard to see... can I move it to
midle of the screen...

"T. Valko" wrote:

See this:

http://www.cpearson.com/Excel/Progress.htm

Also note at the bottom of the page the reference to other sites with
info
on this.

--
Biff
Microsoft Excel MVP


"Alberto Ast" wrote in message
...
I have a long macro runing under
Application.ScreenUpdating = False
but I would like to have a bar showing in prograss or some action so
user
will know system is working and not freeze up.
Something similar as windows does to show something is happening.

Thanks.






  #13   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 181
Default Macro working bar

Any other way to do so....?

"T. Valko" wrote:

No, you can't move the status bar.

--
Biff
Microsoft Excel MVP


"Alberto Ast" wrote in message
...
I acess the below www and get to see some nice samples but in all the
status
bar is at the very bottom of the screen hard to see... can I move it to
midle of the screen...

"T. Valko" wrote:

See this:

http://www.cpearson.com/Excel/Progress.htm

Also note at the bottom of the page the reference to other sites with
info
on this.

--
Biff
Microsoft Excel MVP


"Alberto Ast" wrote in message
...
I have a long macro runing under
Application.ScreenUpdating = False
but I would like to have a bar showing in prograss or some action so
user
will know system is working and not freeze up.
Something similar as windows does to show something is happening.

Thanks.






  #14   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Macro working bar

Not that I know of.

--
Biff
Microsoft Excel MVP


"Alberto Ast" wrote in message
...
Any other way to do so....?

"T. Valko" wrote:

No, you can't move the status bar.

--
Biff
Microsoft Excel MVP


"Alberto Ast" wrote in message
...
I acess the below www and get to see some nice samples but in all the
status
bar is at the very bottom of the screen hard to see... can I move it
to
midle of the screen...

"T. Valko" wrote:

See this:

http://www.cpearson.com/Excel/Progress.htm

Also note at the bottom of the page the reference to other sites with
info
on this.

--
Biff
Microsoft Excel MVP


"Alberto Ast" wrote in message
...
I have a long macro runing under
Application.ScreenUpdating = False
but I would like to have a bar showing in prograss or some action so
user
will know system is working and not freeze up.
Something similar as windows does to show something is happening.

Thanks.








  #15   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Macro working bar

See Andy Pope's site for a workbook with various progess bars.

http://www.andypope.info/vba/pmeter.htm


Gord Dibben MS Excel MVP

On Thu, 10 Sep 2009 21:15:01 -0700, Alberto Ast
wrote:

Any other way to do so....?

"T. Valko" wrote:

No, you can't move the status bar.

--
Biff
Microsoft Excel MVP


"Alberto Ast" wrote in message
...
I acess the below www and get to see some nice samples but in all the
status
bar is at the very bottom of the screen hard to see... can I move it to
midle of the screen...

"T. Valko" wrote:

See this:

http://www.cpearson.com/Excel/Progress.htm

Also note at the bottom of the page the reference to other sites with
info
on this.

--
Biff
Microsoft Excel MVP


"Alberto Ast" wrote in message
...
I have a long macro runing under
Application.ScreenUpdating = False
but I would like to have a bar showing in prograss or some action so
user
will know system is working and not freeze up.
Something similar as windows does to show something is happening.

Thanks.







Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
macro is not working? Derrick Excel Discussion (Misc queries) 5 June 23rd 09 01:51 PM
MACRO IS NOT WORKING AS IT SHOULD jeannie v Excel Worksheet Functions 3 June 21st 07 08:19 AM
macro not working dpolston Excel Discussion (Misc queries) 2 April 19th 07 09:16 PM
macro not working Jonathan Cooper Excel Discussion (Misc queries) 1 February 1st 06 10:06 PM
"Compare2Lists" Macro Not working B Schwarz Excel Discussion (Misc queries) 3 January 7th 05 11:35 PM


All times are GMT +1. The time now is 07:15 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"