Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 26
Default Worksheet "slideshow" in Excel

I have a workbook that is designed to record the scores in an Lawn Bowls
Tournament. It is visually designed to project the results on to a screen or
TV set.
I wish to be able to cycle thru some of the sheets (like a powerpoint
presentation) using timings.
Say, Sheet5, Sheet7, Sheet8 etc. displaying for say 30 secs and then looping
back to Sheet5 to start again and clicking escape to cancel the procedure.
The sheets all have names eg. Sheet5 is ("Update 1")
I am using Excel 2000 but would like it compatible with 2007
All assistance greatly appreciated.
--
ypukpete
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 464
Default Worksheet "slideshow" in Excel

Try;

Sub CycleSheets()
Dim lIndex As Long

For lIndex = 5 To 8
Sheets(lIndex).Select
Application.Wait Time + TimeValue("00:00:30")
Next lIndex

Run "CycleSheets"
End Sub



"ypukpete" wrote in message
...
I have a workbook that is designed to record the scores in an Lawn Bowls
Tournament. It is visually designed to project the results on to a screen
or
TV set.
I wish to be able to cycle thru some of the sheets (like a powerpoint
presentation) using timings.
Say, Sheet5, Sheet7, Sheet8 etc. displaying for say 30 secs and then
looping
back to Sheet5 to start again and clicking escape to cancel the procedure.
The sheets all have names eg. Sheet5 is ("Update 1")
I am using Excel 2000 but would like it compatible with 2007
All assistance greatly appreciated.
--
ypukpete


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
"_Fill" and "_Key1" is contained in the worksheet I want to copy.. CWP Excel Discussion (Misc queries) 1 April 6th 10 06:08 PM
Turn off "CALCULATE" on bottom of Excel worksheet. near "Ready" chrispal86 Excel Discussion (Misc queries) 2 February 2nd 10 08:36 PM
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell Steve Kay Excel Discussion (Misc queries) 2 August 8th 08 01:54 AM
CommandBars("Worksheet Menu Bar").Controls("Tools").Enabled = Fals Arturo Excel Programming 3 May 26th 05 05:44 PM
Excel VBA - go to worksheet "name" based on a cell reference ="Name" james007 Excel Programming 2 July 8th 04 11:04 PM


All times are GMT +1. The time now is 09:13 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"