by Ilker | Sep 13, 2021 | Excel Tips & Tricks
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...
by Ilker | Aug 19, 2021 | Excel Tips & Tricks
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...
by Ilker | Jul 30, 2021 | Excel Tips & Tricks
Numeric values are defined by data types like integer or byte. These data types are used for optimizing the processing and memory allocation in Excel. In this guide, we’re going to show you how to convert string into number in Excel VBA. Download Workbook Data types...
by Ilker | Jul 28, 2021 | Excel Tips & Tricks
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...
by Ilker | Jul 27, 2021 | Excel Tips & Tricks
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....
by Ilker | Jul 9, 2021 | Excel Tips & Tricks
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...
by Ilker | Jul 8, 2021 | Excel Tips & Tricks
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...
by Ilker | Jul 5, 2021 | Excel Tips & Tricks
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...
by Ilker | Jun 23, 2021 | Excel Tips & Tricks
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...