Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default autofilter problem in Mac, but works in Windows, Excel 2003

I work in Excel 2003 (Windows) and have set up an autofilter and password
protection. Autofilter works a treat, no problems. But when this same file is
opened on a Mac, the autofilter is inoperable. Any ideas? It does work if
the password protection is removed, but I want to leave it on.

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default autofilter problem in Mac, but works in Windows, Excel 2003

xl2003 has an option to allow autofilter when you protect the worksheet. I'm
not sure if the version you're using on the Mac supports it.

xl2002 was the first version of windows excel to have this. In earlier
versions, you could use a macro.

If you already have the outline/subtotals/autofilter applied, you can protect
the worksheet in code (auto_open/workbook_open??).

Option Explicit
Sub auto_open()
With Worksheets("sheet1")
.Protect Password:="hi", userinterfaceonly:=True
'.EnableOutlining = True
.EnableAutoFilter = True
If .FilterMode Then
.ShowAllData
End If
End With
End Sub

It needs to be reset each time you open the workbook. (Earlier versions of
excel don't remember it after closing the workbook. IIRC, xl2002+ will remember
the allow autofilter setting under tools|Protection|protect sheet, but that
won't help when you're filtering via code.)

====

If this doesn't help, you may want to post your question he
news://msnews.microsoft.com/microsof...c.office.excel
if you don't get a good response.





Curran wrote:

I work in Excel 2003 (Windows) and have set up an autofilter and password
protection. Autofilter works a treat, no problems. But when this same file is
opened on a Mac, the autofilter is inoperable. Any ideas? It does work if
the password protection is removed, but I want to leave it on.


--

Dave Peterson
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
EXCEL 2003 AUTOFILTER PROBLEM Micko Excel Discussion (Misc queries) 0 July 11th 08 11:28 AM
How can I convert an excell file from windows 98 on to works spr. Puma Excel Discussion (Misc queries) 7 December 19th 05 04:02 PM
Works 4.0(wks) needs to be converted to Excel 2003 BJB Excel Discussion (Misc queries) 2 July 15th 05 03:49 PM
Excel 2003 Slowness problem in Windows XP Elton Seng Yan Thung Excel Discussion (Misc queries) 2 May 18th 05 04:55 AM
Windows search in Excel with autofilter Dave Z Excel Discussion (Misc queries) 1 January 21st 05 07:44 PM


All times are GMT +1. The time now is 01:03 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"