How do I get a macro to run when I have to check workbook out and in on teams.

ghrek

Active Member
Joined
Jul 29, 2005
Messages
426
Hi

I have a workbook and a macro that im trying to auto run when I either open or close workbook. Ive tried it many times and it not doing it. Believe it something to do with me having to check in and out.

Any Ideas?



VBA Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Cells.Select
    With Selection.Font
        .Name = "Daytona Condensed"
        .FontStyle = "Regular"
        .Size = 11
        .Strikethrough = False
        .Superscript = False
        .Subscript = False
        .OutlineFont = False
        .Shadow = False
        .Underline = xlUnderlineStyleNone
        .TintAndShade = 0
        .ThemeFont = xlThemeFontNone
    End With
    Range("A5308").Select
    Selection.End(xlUp).Select
    ActiveWindow.SmallScroll Down:=-6
End Sub
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
You mentioned checking in/out in Teams. do you mean SharePoint? Are you opening the sheet in Web view or the Desktop app? Macros don't run in web view.
 
Upvote 0
what version of excel are you using? This code seems to work on my system with O365.
 
Upvote 0

Forum statistics

Threads
1,213,551
Messages
6,114,273
Members
448,559
Latest member
MrPJ_Harper

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