ActiveX checkboxes slows down opening/load time of workbook

Eddy2

New Member
Joined
Mar 2, 2017
Messages
27
Hi
I have an Excel workbook with around 150 ActiveX checkboxes. All these Active X controls leads to long load time when opening the workbook (about 20 sec on my computer). Is there any way to speed up the load time of the workbook (without changing to form controls)?
 
If you would like some other suggestions on how to do things let us know.
Show us the script your using in these:

For the rest I only use their state; I modify the price in the adjoining cells of the check boxes, only if their state is true.
 
Upvote 0

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Here is just an example:
https://www.dropbox.com/s/bwvs3kiok2yu1tu/Forum.xlsm?dl=0

Here is my new challenge:

Remove the equal sign in this code ("=1") and the code works as it supposed to. With the equal sign it inserts the formula in all offset cells, despite the state of the chk boxes = Xloff

Code:
 For i = 2 To 4
    
        If ActiveSheet.CheckBoxes(i).Value = xlOn Then
        ActiveSheet.CheckBoxes(i).TopLeftCell.Offset(1, 0).Formula = "=1"
        
        End If
    Next i
End Sub

If you would like some other suggestions on how to do things let us know.
Show us the script your using in these:

For the rest I only use their state; I modify the price in the adjoining cells of the check boxes, only if their state is true.
 
Upvote 0

Forum statistics

Threads
1,223,164
Messages
6,170,444
Members
452,326
Latest member
johnshaji

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