Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
can i have a Macro that opens each tab and displays it for a number of
seconds then opens the next tab and does the same thing until the last tab? Can this be without specifying tab names? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
This will show each sheet for 5 seconds Sub ShowSheets() For x = 1 To Worksheets.Count Sheets(x).Activate Application.Wait (Now + TimeValue("0:00:5")) Next End Sub -- Mike When competing hypotheses are otherwise equal, adopt the hypothesis that introduces the fewest assumptions while still sufficiently answering the question. "JOSEPH WEBER" wrote: can i have a Macro that opens each tab and displays it for a number of seconds then opens the next tab and does the same thing until the last tab? Can this be without specifying tab names? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub dk()
For Each sh In ActiveWorkbook.Sheets sh.Select s = Timer + 2 Do While Timer < s DoEvents Loop Sheets(1).Select Next End Sub "JOSEPH WEBER" wrote in message ... can i have a Macro that opens each tab and displays it for a number of seconds then opens the next tab and does the same thing until the last tab? Can this be without specifying tab names? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
importing tabs/sheets only from the currently open files | Excel Programming | |||
tabs open | Excel Discussion (Misc queries) | |||
how do i add tabs to an open excel spreadsheet? | Excel Discussion (Misc queries) | |||
Open Multiple Queries in New Tabs | Excel Programming | |||
selecting multiple sheet tabs and open another workbook | Excel Discussion (Misc queries) |