Web Browser Style Back Button

arom

New Member
Joined
Jul 24, 2008
Messages
23
I'm not really sure where to post this because it's more of a powerpoint question than excel... but hopefully someone can help!

I have this code for a web browser style back button in excel:

Option Explicit
Dim History As New Collection
Private Sub Workbook_SheetActivate(ByVal Sh As Object)
Dim wksht As Worksheet
If History.Count > 0 Then
If Sh.Name = History(History.Count).Name Then Exit Sub
End If
Set wksht = Sh
History.Add wksht
If History.Count > 10 Then History.Remove 1
End Sub
Sub Go_Back_In_History()
If History.Count = 0 Then
MsgBox "No more 'Back' steps available"
Exit Sub
End If
If History.Count = 1 And History(1).CodeName = ActiveSheet.CodeName Then
MsgBox "No more 'Back' steps available"
Exit Sub
End If
If History(History.Count).CodeName = ActiveSheet.CodeName Then History.Remove History.Count
Application.EnableEvents = False
On Error Resume Next
History(History.Count).Activate
On Error GoTo 0
Application.EnableEvents = True
History.Remove History.Count
End Sub



Can anyone help me convert this to "powerpoint" language so that i can have a button that will go back to previous slides?


Thanks for your help!!
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top