G
Gum
I have the freeze the value of an output from a macro for a specified parts
of a second while the rest of the worksheet continues to be updated.
I have used the formulation:
Sheets("Sheet1").Range("A1") = 1
Application.Wait Now + TimeValue("00:00:01")
but this freezes the entire application for the specifed duration.
I have also used a loop:
for count =1 to 10000
Sheets("Sheet1").Range("A1") = 1
Next count
but looping effectively freezes the application
The value ..."A1" is required to be sent via DDE to another application, and
this process is held up until the 2 procedures (mentioned above) are
completed, which defeats the purpose.
What is the solution?
of a second while the rest of the worksheet continues to be updated.
I have used the formulation:
Sheets("Sheet1").Range("A1") = 1
Application.Wait Now + TimeValue("00:00:01")
but this freezes the entire application for the specifed duration.
I have also used a loop:
for count =1 to 10000
Sheets("Sheet1").Range("A1") = 1
Next count
but looping effectively freezes the application
The value ..."A1" is required to be sent via DDE to another application, and
this process is held up until the 2 procedures (mentioned above) are
completed, which defeats the purpose.
What is the solution?