Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 611
Default Calculations

Bill,

Oops. My bad (whatever exactly that means <g). I thought I was replying
to the OP, which doesn't show up in my newsreader, OE, as happens sometimes.

While I'm here, since I can't reply to the OP anyway, here's a simple little
progress bar I made years ago. I admitted even then in my comments that
it's dorky. It could be put into text box on the worksheet or UserForm or a
cell (where it works best with a non-proportional font like Courier), or the
Status bar, etc.

WorkToDo = 20 ' 20 units of work - also sets length of char string of
progress bar
WorkDone = 5 ' update as routine runs, 0 to WorkToDo

ProgressIndicator = String$(WorkDone, "+") & String$(WorkToDo - WorkDone,
"-")

Range("PB") = ProgressIndicator
ActiveSheet.TextBox1.Text = ProgressIndicator : DoEvents
Application.StatusBar = ProgressIndicator

Maybe someone can use it.
--
Earl Kiosterud
www.smokeylake.com

"Bill Martin -- (Remove NOSPAM from address)"
wrote in message ...
Earl Kiosterud wrote:
Bill,

Chip Pearson has a progress bar at www.cpearson.com
--
Earl Kiosterud
www.smokeylake.com


I understand, and I have played with it. It's great. It also requires
more of the user to know how to load it, declare variables, etc. If
you're up to that it's great. Some users here aren't always at that level
though and a dirt simple approach is occasionally useful as an
alternative -- IMHO. Stephan had already mentioned Chip's progress bar
approach so I just thought I'd point out a different one.

Bill



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
MPG Calculations Terry Bennett Excel Worksheet Functions 8 June 10th 08 10:17 PM
Calculations Rich D Excel Discussion (Misc queries) 2 October 2nd 07 06:09 PM
Calculations J. McGonigal Excel Worksheet Functions 4 April 25th 06 07:53 AM
how many calculations? Amie Excel Worksheet Functions 0 April 21st 06 08:04 PM
Between calculations Dan Wilson Excel Worksheet Functions 10 March 15th 05 05:06 PM


All times are GMT +1. The time now is 12:23 PM.

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"