Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

"Fixed objects will move" notice comes up repeatedly when filtering a range


View products that this article applies to.

Symptoms

Consider this scenario: You open an Excel 97-2003 format file in Excel. The file contains a table area with autofilter applied. The table area contains cell comments. When you attempt to filter the range, you receive the message, "Fixed objects will move." You click OK, but the message comes up again and again before Excel finally filters the table range.

↑ Back to the top


Cause

This is a confirmed issue in Microsoft Excel 2010 and 2013. Microsoft is currently investigating the cause.

↑ Back to the top


Resolution

There are two possible workarounds for this issue:

1. If you need to keep the file in Excel 97-2003 format, change the comments' properties to move and size with cells. The following macro will set all comments in the�workbook to move and size with cells:

Dim wksht As Excel.Worksheet
Dim wb As Excel.Workbook
Set wb = ActiveWorkbook

��� For Each wksht In wb.Worksheets
������� For Each cmt In wksht.Comments
���������� cmt.Shape.placement = xlMoveAndSize
������� Next cmt
��� Next wksht

End Sub

2. Save the workbook in Excel 2007-2010 format (XLSX, XLSM, XLSB).

↑ Back to the top


Note This is a "FAST PUBLISH" article created directly from within the Microsoft support organization. The information contained herein is provided as-is in response to emerging issues. As a result of the speed in making it available, the materials may include typographical errors and may be revised at any time without notice. See Terms of Use for other considerations.

↑ Back to the top


Keywords: KB2601322

↑ Back to the top

Article Info
Article ID : 2601322
Revision : 2
Created on : 10/31/2012
Published on : 10/31/2012
Exists online : False
Views : 552