Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there any way to display in the spreadsheet how many times a *Do Until*
procedure is looping? I'm thinking of something simple in the loop like *c=c+1* (??) but how do I get to show the *c* value in , say, cell A1 . Many Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Simply add
cells(1,1)=c somewhere in the loop routine. -----Original Message----- Is there any way to display in the spreadsheet how many times a *Do Until* procedure is looping? I'm thinking of something simple in the loop like *c=c+1* (??) but how do I get to show the *c* value in , say, cell A1 . Many Thanks . |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Gil,
You could try Range("A1").Value = "Now on iteration " & Format(c,"#,##0") or you could put it in the statusbar Application.StatusBar = "Now on iteration " & Format(c, "#,##0") -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Gil" wrote in message ... Is there any way to display in the spreadsheet how many times a *Do Until* procedure is looping? I'm thinking of something simple in the loop like *c=c+1* (??) but how do I get to show the *c* value in , say, cell A1 . Many Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Status Bar not showing statistics | Excel Discussion (Misc queries) | |||
reuest formula for auto update status & status date | Excel Worksheet Functions | |||
Why is calculate showing in status bar at bottom of spreadsheet? | Excel Discussion (Misc queries) | |||
Status Bar Every Nth Loop | Excel Programming | |||
HELP!!!! Can't stop a loop (NOT an infinite loop) | Excel Programming |