Shared workbook only retains frames for first user in file.

Royzer

New Member
Joined
Jun 22, 2010
Messages
48
Hi.

We have a shared workbook (version 2003) on a shared drive that sometimes has up to 10 people accessing it at the same time. I have set the frames on all the worksheets to B9 and saved the file. The first person to open the file has frames. Subsequent (simultaneous) users do not have frames. It appears that this occurs every time the file is accessed by multiple users at once--whomever opens the file first gets the frames and no one else does. Is there any way to change this so everyone who is in the file at the same time has frames on the worksheets they are working in? Here is the code I used to set the frames:

Code:
Sub freezeframesatB9()
Dim vWks As Variant

    For Each vWks In Array("KAKE", "KBTX", "KKCO", "KKTV", "KOLN", "KOLO", "KWTX", "KXII", "WBKO", "WCAV", "WCTV", "WEAU", "WHSV", "WIBW", "WIFR", "WILX", "WITN", "WJHG", "WKYT", "WMTV", "WNDU", "WOWT", "WRDW", "WSAW", "WSAZ", "WSWG", "WTAP", "WTOK", "WTVY", "WVLT", "WYMT", "TV3")
        Application.Goto Worksheets(vWks).Range("B9")
        ActiveWindow.FreezePanes = False
        ActiveWindow.FreezePanes = True
    Next vWks
End Sub

Thanks!
:)
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.

Forum statistics

Threads
1,215,729
Messages
6,126,525
Members
449,316
Latest member
sravya

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