如何在Excel中刪除所有按鈕或命令按鈕?
本文討論的是從Excel的活動(dòng)工作表中刪除所有窗體控制按鈕或命令按鈕。
選中所有按鈕,包括窗體控制按鈕和命令按鈕,將其全部刪除
通過VBA代碼刪除所有按鈕,包括窗體控制按鈕和命令按鈕
使用VBA代碼刪除所有表單控制按鈕或命令按鈕
選中所有按鈕,包括窗體控制按鈕和命令按鈕,將其全部刪除
驚人的! 在 Excel 中使用高效的選項(xiàng)卡,如 Chrome、Firefox 和 Safari!
每天節(jié)省50%的時(shí)間,并減少數(shù)千次鼠標(biāo)單擊!
請(qǐng)執(zhí)行以下操作以從活動(dòng)工作表中刪除所有按鈕(包括表單控制按鈕和命令按鈕)。
1.通過單擊啟用設(shè)計(jì)模式 開發(fā)商 > 設(shè)計(jì)模式。 看截圖:

2.選擇一個(gè)命令按鈕,然后按 按Ctrl + A 鍵以選擇當(dāng)前工作表中的所有按鈕。
3。 按 刪除 鍵刪除所有選中的按鈕。
備注:如果此工作表中還有其他對(duì)象,則也會(huì)選擇它們。
通過VBA代碼刪除所有按鈕,包括窗體控制按鈕和命令按鈕
此外,您可以在VBA腳本下方應(yīng)用以從Excel當(dāng)前工作表中刪除所有按鈕。
1.打開包含您要?jiǎng)h除的按鈕的工作表,然后按 其他 + F11 鍵打開 Microsoft Visual Basic應(yīng)用程序 窗口。
2.在 Microsoft Visual Basic應(yīng)用程序 窗口中,單擊 插頁 > 模塊,然后將以下VBA代碼復(fù)制到“代碼”窗口中。
VBA代碼:從活動(dòng)工作表中刪除所有按鈕
Sub Clear_ButtonsActiveSheet()
Dim I As Long
Dim xOLE As Object
On Error Resume Next
ActiveSheet.Buttons.Delete
For Each xOLE In ActiveSheet.OLEObjects
If TypeName(xOLE.Object) = "CommandButton" Then
xOLE.Delete
End If
Next
End Sub
3. Press the F5 key to run the code. Then all buttons including form control buttons and command buttons are removed from current worksheet immediately.
Remove all form control buttons or command buttons with VBA code
If you only want to remove all form control buttons or all command buttons from active sheet. You can try the below VBA codes to achieve it.
1. Open the worksheet contains the buttons you want to remove, and then press the Alt + F11 keys to open the Microsoft Visual Basic for Applications window.
2. In the Microsoft Visual Basic for Applications window, click Insert > Module, then copy below VBA code into the Code window.
VBA code: Remove all form control buttons from active sheet
Sub Clear_ButtonsActiveSheet()
ActiveSheet.Buttons.Delete
End Sub
VBA code: Remove all command buttons from active sheet
Sub Clear_ButtonsActiveSheet()
Dim xOLE As Object
On Error Resume Next
For Each xOLE In ActiveSheet.OLEObjects
If TypeName(xOLE.Object) = "CommandButton" Then
xOLE.Delete
End If
Next
End Sub
3. Press the F5 key to run the code.
Then all form control buttons or all command buttons are removed from current worksheet immediately.
Related articles:
How to insert a blank new row automatically by Command Button in Excel?
How to use Command Button to save active worksheet as PDF file in Excel?
How to update or insert (current) date and time by a Command Button in Excel?
How to use a Command Button to change a specified cell value in Excel?
Best Office Productivity Tools
Transform Hours into Minutes with Kutools for Excel!
Ready to supercharge your Excel tasks? Harness the power of Kutools for Excel - your ultimate time-saving tool. Streamline intricate tasks and glide through your data like a pro. Experience Excel at lightning speed!
Why You Need Kutools for Excel
??? Over 300 Powerful Features: Kutools is packed with more than 300 advanced features, simplifying your work in over 1500 scenarios.
?? Superior Data Processing: Merge cells, remove duplicates, and perform advanced data conversions – all without breaking a sweat!
?? Efficient Batch Operations: Why put in extra effort when you can work smart? Import, export, combine, and tweak data in bulk with ease.
?? Customizable Charts and Reports: Access a broad variety of additional charts and generate insightful reports that tell a story.
??? Powerful Navigation Pane: Gain an advantage with the robust Column Manager, Worksheet Manager, and Custom Favorites.
?? Seven Types of Drop-down Lists: Make data entry a breeze with drop-down lists of various features and types.
?? User-Friendly: A breeze for beginners and a powerful tool for experts.
Download Now and Soar Through Time with Excel!
Read More... Free Download... Purchase...
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
Enable tabbed editing and reading in
Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
Open and create multiple documents in new tabs of the same window, rather than in new windows.
Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Read More... Free Download... Purchase...
版權(quán)聲明:本文內(nèi)容由網(wǎng)絡(luò)用戶投稿,版權(quán)歸原作者所有,本站不擁有其著作權(quán),亦不承擔(dān)相應(yīng)法律責(zé)任。如果您發(fā)現(xiàn)本站中有涉嫌抄襲或描述失實(shí)的內(nèi)容,請(qǐng)聯(lián)系我們jiasou666@gmail.com 處理,核實(shí)后本網(wǎng)站將在24小時(shí)內(nèi)刪除侵權(quán)內(nèi)容。
版權(quán)聲明:本文內(nèi)容由網(wǎng)絡(luò)用戶投稿,版權(quán)歸原作者所有,本站不擁有其著作權(quán),亦不承擔(dān)相應(yīng)法律責(zé)任。如果您發(fā)現(xiàn)本站中有涉嫌抄襲或描述失實(shí)的內(nèi)容,請(qǐng)聯(lián)系我們jiasou666@gmail.com 處理,核實(shí)后本網(wǎng)站將在24小時(shí)內(nèi)刪除侵權(quán)內(nèi)容。
上一篇:生產(chǎn)自動(dòng)化流水線工廠的布局設(shè)計(jì)與效率提升,探索生產(chǎn)自動(dòng)化流水線工廠的布局設(shè)計(jì)和效率提升方法