Disappearing buttons and drop down lists in Excel 2010

__Steve__

New Member
Joined
Oct 11, 2013
Messages
28
I have just came across very annoying problem with Excel 2010. All buttons and drop-down lists disappear from hidden rows after saving and reopening any worksheet. At home I am using Excel 2007 and it works fine, but unfortunately at work we are using excel 2010 which just does not work as it should. Does anyone of you know how to solve the problem with disappearing drop downs and buttons?
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
I think I've just came across one of possible ways around that problem. All form controls should not scale or move with cells. The trick is instead of scaling and moving them with hidden rows a macro to hide them could be used, maybe something like this:


If CheckBoxAnnualIncrease.Value = False Then
FrameRentIncrease.Visible = False
LabelYear1Rent.Visible = False
Else
FrameRentIncrease.Visible = True
LabelYear1Rent.Visible = True
End If


What do you think? It should work and that would be a possible solution to the problem with disappearing form controls when hiding and unhiding rows.
 
Upvote 0

Forum statistics

Threads
1,215,639
Messages
6,125,968
Members
449,276
Latest member
surendra75

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