DEV Community

Andrews
Andrews

Posted on • Originally published at geekexcel.com on

How To Edit The Tooltip For Toolbar Buttons Using VBA In Microsoft Excel?

In this post, you will learn how to edit the tooltip for toolbar buttons using VBA in Microsoft Excel. Let’s see them below!! Get the official version of MS Excel from the following link: https://www.microsoft.com/en-in/microsoft-365/excel

Example

  • Firstly, in the Excel Worksheet, you have to go to the Developer Tab.
  • Then, you need to ** ** select the Visual Basic option under the Code section.

Select Visual Basic
Select Visual Basic

  • Now, you have to copy and paste the code given below.
Sub ChangeToolTipsText()
    Application.CommandBars("Standard").Controls(1).TooltipText = "Test"
End Sub
Use this macro to reset the tooltips text:

Sub ResetToolTipsText()
    Application.CommandBars("Standard").Controls(1).TooltipText = ""
End Sub
Use this macro if you want to reset all custom settings for a Control::

Sub ResetAllControlSettings()
    Application.CommandBars("Standard").Controls(1).Reset
End Sub

Enter fullscreen mode Exit fullscreen mode
  • You need to save the code by selecting it and then close the window.

Save the Code

  • Again, you have to go to the Excel Spreadsheet , and click on the Developer Tab.
  • Then, you need to choose the Macros option in the Code section.

Choose Macro option
Choose Macro option

  • Now, you have to make sure that your macro name is selected and click the *Run * button.

Run the Code

  • Finally, you can edit the tooltip for toolbar buttons using VBA in Excel.

Sum-Up

We hope that this post gives you guidelines on how to edit the tooltip for toolbar buttons using VBA in Microsoft Excel. ** ** Please leave a comment in case of any queries, and don’t forget to mention your valuable suggestions as well. Thank you so much for Visiting Our Site!! Continue learning on Geek Excel!! *Read more on Excel Formulas *!!

Related Articles:

Top comments (0)