Remove DropDown Arrow From One Column

XLML

Active Member
Joined
Aug 15, 2003
Messages
407
I opened a file that has a dropdown arrow in Cell C3 with no choices. I thought it could be removed by using Data-Filter-AutoFilter, but that doesn't work. Any ideas?

Thanks in advance,
XLML
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
It probably has a data validation attached to it. Go to Data|Validation, and make sure you're allowing Any Value.
 
Upvote 0
I should have posted that I tested Data..Validation... Clear All before I posted. I still have the problem.

XLML
 
Upvote 0
Are there any macros associated with the file? Post any you might suspect of being relevant to this problem.
 
Upvote 0
After looking at the file, the only way I could remove it was using this macro:

Code:
Sub LoseObjects()

For Each Shape In Sheet1.Shapes
    Shape.Delete
Next Shape

End Sub

If you don't want to delete it, you can go to Tools|Options|View --> and select Hide Objects.

I have no idea how it got there, or even what it is, but it looks like it was just the arrow for a drop down box... the macro should solve your problem (if there aren't any legitimate objects on the sheet that you would want to keep...)
 
Upvote 0
I had the same problem some days ago. Juan Pablo González helped my out with this post:

"Si, conozco un caso... es muy extraño. Se puede solucionar corriendo este macro

Sub RemoveDropdowns()
Dim shp As Shape

For Each shp In Sheet1.Shapes
shp.Delete
Next shp
End Sub

pero con cuidado, si hay celdas con comentarios, Excel explota !
_________________
Regards,

Juan Pablo González
MrExcel.com Consulting "


(But be carefull : if there are cells with comments, Excel crashs)
HTH.
 
Upvote 0

Forum statistics

Threads
1,214,608
Messages
6,120,500
Members
448,968
Latest member
screechyboy79

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