Excel - White spots what is it?

Baymax9

New Member
Joined
Aug 25, 2017
Messages
5
Hi i was given an Excel template by somebody to use and when i look closely, near the top of the page there is some white item/spot.
I cannot click on it until i zoomed the page to the max, and when i finally clicked it, it showed white box with absolutely nothing to click at. (picture attached)
I can’t delete or do anything to it. Can someone help me
BkF3H88
to figure what it is and what can i do to delete it?

Image: Excel white spot - Imgur

 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
See if its an object. Press Home-Find and Select-Select Objects. Select the cells around the object. You must completely enclose it. Press delete. If it is an object it will be gone.
 
Upvote 0
Hi guys, thank you so much for the suggestions!

See if its an object. Press Home-Find and Select-Select Objects. Select the cells around the object. You must completely enclose it. Press delete. If it is an object it will be gone.

Select Objects lets me select the object however i still cannot delete it. Instead I have tried to click Selection Pane and i finally found that it is an object (i can show/hide all objects and narrowed it down). However i still cannot delete or do anything to it.

Any further suggestions?
 
Upvote 0
What happens if you go to Find & Select>Go To Special..., select Objects and then press Del(ete)?
 
Upvote 0
Dear Norie, it solved the problem! however it also deleted all of my objects which i do not wish to do. And if i select just that object, it won't delete. hmmm??
 
Upvote 0
Hi guys, actually i went to Developer Mode -> Design Mode and deleted it finally! It was an EMBED ComboBox apparently!

Now everything is fine. thank you all for the advice!
 
Upvote 0
What happens if you run this code?
Code:
Sub ListStuff()
Dim ws As Worksheet
Dim wsList As Worksheet
Dim rngList As Range
Dim obj As Object

    Set wsList = Sheets.Add

    wsList.Range("A1:B1").Value = Array("SheetName", "ObjectName")

    Set rngList = wsList.Range("A2")

    For Each ws In ActiveWorkbook.Sheets

        If Not ws Is wsList Then
            For Each obj In ws.Shapes
                rngList.Value = ws.Name
                rngList.Offset(, 1).Value = obj.Name
                Set rngList = rngList.Offset(1)
            Next obj

            For Each obj In ws.OLEObjects
                rngList.Value = ws.Name
                rngList.Offset(, 1).Value = obj.Name
                Set rngList = rngList.Offset(1)
            Next obj
        End If
    Next ws

End Sub
 
Upvote 0
Hi Norie actually i have solved it as i explained in my post above.

But thanks so much for the effort above!! Truly appreciate it. this forum is awesome!! :)
 
Upvote 0

Forum statistics

Threads
1,223,910
Messages
6,175,318
Members
452,634
Latest member
cpostell

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