Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
is it actually possible to delay a sheet using a macro?
i'm doin AVCE ICT using Excel 2000... when i record a macro to show sheet it doesn't delay it....can i do this -- Message posted from http://www.ExcelForum.com |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Are you looking for Application.wait?
"shasta <" wrote: is it actually possible to delay a sheet using a macro? i'm doin AVCE ICT using Excel 2000... when i record a macro to show a sheet it doesn't delay it....can i do this? --- Message posted from http://www.ExcelForum.com/ -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
i tried that but msg box popped up saying Argument no
Optional...:confused -- Message posted from http://www.ExcelForum.com |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
When you looked at VBA's help, you should have seen the syntax:
Here's another example: Option Explicit Sub testme() Application.Wait Now + TimeSerial(0, 0, 5) Worksheets("sheet1").Activate End Sub It'll wait 5 seconds, then activate sheet1. "shasta <" wrote: i tried that but msg box popped up saying Argument not Optional... ![]() --- Message posted from http://www.ExcelForum.com/ -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
wohoo thank you so much....lol...i've spent a month trying to work i
out and my deadline was comin up.....thank you!!!!!!!; -- Message posted from http://www.ExcelForum.com |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This delays the sheet selection by 5 seconds.
Check out the Help for more info on OnTime. Hi Shasta. Have a look at these two. Sub DelaySh() 'Run this, and in 5 seconds ShowSheet is run Application.OnTime Now + TimeValue("00:00:05"), "ShowSheet" End Sub Sub ShowSheet() 'U can still use XL instead of waiting Worksheets("Sheet3").Select End Sub Regards Robert "shasta " wrote in message ... i tried that but msg box popped up saying Argument not Optional... ![]() --- Message posted from http://www.ExcelForum.com/ --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.655 / Virus Database: 420 - Release Date: 09/04/2004 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Time formulae - delay updating when the sheet is refreshed | Excel Discussion (Misc queries) | |||
Scroll Bar Delay | Excel Discussion (Misc queries) | |||
Workbook sheet code delay | Excel Discussion (Misc queries) | |||
web query help.. delay? | Excel Worksheet Functions | |||
Long Time Delay To Paste From UserForm To Sheet | Excel Worksheet Functions |