Link to home
Start Free TrialLog in
Avatar of Cook09
Cook09Flag for United States of America

asked on

"Cannot Shift Objects off Sheet"

I have a spreadsheet that I want to keep the focus on just what has been entered.  The easiest way, it seems, is to just check to see if the last row + 1 is hidden. If yes, then unhide row and add data.  There is one object on the sheet, an image.  When I try to all of the rows/columns, from the last filled row (23), an error appears:

"Cannot Shift Objects off Sheet"

Even after removing the image, the error still appears.  What's odd is that all of the rows except 1048573:1048576 can be hidden and all of the columns except the one just adjacent to the "Table" can be hidden.  I had the Table as a Table, but also converted it back to a normal range with no effect.

I was able to "Fill" those four rows with a color that is similar to the hidden background, but it looks odd when the last row of the table is 23 and the next row is 1048573.  Yes, I can keep the rows and column headers from showing, but am curious at why this error is occurring, and what can be done  to fix it, instead of just apply a workaround patch .

There have been several suggestions that I found on the net, as far as changing certain settings and/or clearing contents but those haven't helped either.

The other quick question is that it seems that hiding all of the unused rows consumes a lot of memory resources (makes it very slow), would this be correct or could there be something else involved?

Are there any other suggestions?
ASKER CERTIFIED SOLUTION
Avatar of Rory Archibald
Rory Archibald
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of gdonaher
gdonaher

Good-day,

A thought:

Sometimes when hiding rows/columns an object on the spreadsheet (such as a picture) will be resized to basically zero width/hight.  It can then be sometimes difficult to find it and remove it.  If there is something there it will produce the error you are getting.

If this isn't it try posting your file so we can take a look.

Hope this helps,

-Garrett
Avatar of Cook09

ASKER

I come up with 7 shapes, and where those would be, I don't know.  If I remove the one I want to keep, will changing .count with .delete remove the other six.

SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Cook09

ASKER

I did a check on the objects within the sheet and this is what returned:

Name      Visible(-1) or Not Visible(0)      Shape type
Comment 4                     0                           4
Comment 15                   0                           4
Comment 16                   0                           4
Comment 17                   0                           4


I do have 4 comments, lines 20-23.  Does having a comment on the last line make a difference?
In the UI if you press f5, then Special... Then choose objects, that will select them so you can delete the shapes.
Avatar of Cook09

ASKER

After Deleting all of the the Type 12 and 13 shapes, plus the Comments, then the Error cleared and I was able to Hide all the rows from 23 to end.  I don't know whether there was a stray shape or maybe if the last row has a comment in it, it poses an issue.

But, it seems fixed at this time.

Thanks for pointing me in the right direction.
Sub ShapesDelete()
'Ran each individually
    Dim myshape As Shape
    For Each myshape In ActiveSheet.Shapes
         'If myshape.Type = 12 Then myshape.DELETE  'ActiveX Control
        If myshape.Type = 13 Then myshape.DELETE    'Image
 
    Next myshape
End Sub



Sub Comments()
    ActiveSheet.Cells.ClearComments
End Sub

Open in new window

Avatar of Cook09

ASKER

There may have been several issues, but through working on the different possibilities, the solution was found, be it shapes or comments.