How to spell check using VBA in Excel

How to spell check using VBA in Excel

Excel can spell check, but it's not as capable as the spell check in Word, nor is it automatic. Using VBA, you can automate the spell-checking process in your workbooks. In this guide, we’re going to show you how to spell check using VBA in Excel. Download Workbook...
How to show a message on Status Bar in Excel

How to show a message on Status Bar in Excel

In this guide, we’re going to show you how to show a message on Status Bar in Excel. Download Workbook What is Status Bar? The status bar is the bottom section of the application window (like in some other Windows applications). It displays additional information...
How to show a closing message in Excel

How to show a closing message in Excel

In this guide, we’re going to show you how to show a closing message in Excel by using macros. Download Workbook ThisWorkbook object and Workbook_BeforeClose Event If you want to trigger any action at the before closing of your workbook, you must add your code under...
How to show a welcome message in Excel

How to show a welcome message in Excel

In this guide, we’re going to show you how to show a welcome message in Excel by using macros. Download Workbook ThisWorkbook object and Workbook_Open Event If you want to trigger any action at the startup of your workbook, you must add your code under Workbook_Open....
How to insert a toggle in Excel

How to insert a toggle in Excel

A toggle button allows selecting from two options: They are like on/off switches or Play/Pause buttons. In this guide, we’re going to show you how to insert a toggle in Excel. Download Workbook Excel supports toggle buttons as development tools.You can assign them...
How to automate Goal Seek in Excel

How to automate Goal Seek in Excel

Goal Seek runs calculations repeatedly (iteratively) to find possible outcome values for your inputs. In this guide, we’re going to show you how to automate Goal Seek in Excel. Download Workbook Scenario Let's take a look at a basic example. There are two inputs...
How to convert text to speech in Excel

How to convert text to speech in Excel

Excel has supported text-to-speech since 2003. In this guide, we’re going to show you how to convert text to speech in Excel using commands or VBA. Download Workbook Testing text to speech Follow the steps below to quickly test the text to speech functionality. Select...
How to get filename from path in Excel

How to get filename from path in Excel

In this guide, we’re going to show you how to get filename from path in Excel. We will cover how to do this with and without VBA. Download Workbook File path and file name A file path is a string identifier that specifies the unique location in a file system. It...