by Ilker | May 28, 2021 | Excel Tips & Tricks
In this guide, we’re going to show you how to create and name a worksheet with VBA in Excel. Download Workbook Syntax You can create and name a worksheet using the Sheets.Add and Worksheets.Add methods. Both methods work similarly and have 4 optional arguments and...
by Ilker | Apr 16, 2021 | Excel Tips & Tricks
How to shorten VBA code in Excel Shortening VBA code can make it much easier to read and maintain. Here, we mean shortening in the sense that some code blocks can be stacked or alternative statements can be introduced to make it more efficient. In this guide,...
by Ilker | Mar 26, 2021 | Excel Tips & Tricks
In this guide, we’re going to show you 5 tips for VBA beginners in Excel and get you up to speed in no time! Saving macros – tips for VBA beginners Since the 2007 version, Excel has been differentiating between files containing macros based indicated by...
by Ilker | Feb 25, 2021 | Excel Tips & Tricks
Text to Columns feature can help you split text strings in Excel. Using VBA, you can make this process even faster. In this guide, we’re going to show you how to split text with VBA in Excel. Download Workbook Data In this example, we have rows of data...
by Ilker | Feb 16, 2021 | Excel Tips & Tricks
In this guide, we're going to show you how to refer a range or a cell in Excel VBA. VBA Basics Before diving into the code, let’s start with a cell or a range means in VBA. First, VBA is an object-based programming language, which means that the language refers each...
by Ilker | Aug 31, 2020 | Excel Tips & Tricks
You can easily copy sheets in Excel manually with a few simple mouse clicks. On the other hand, you need a macro if you want to automate this process. In this guide, we’re going to show you how to copy sheets in Excel with VBA. Download Workbook Before you start...
by Ilker | Mar 4, 2020 | Excel Tips & Tricks
In this guide, we’re going to show you how to enter data in form structure, without using VBA. Here are a few reasons why this might be a preferable option: A spreadsheet’s tabular form is a great way to keep records and work on them. On the other hand, entering data...
by Ilker | Dec 27, 2019 | Excel Tips & Tricks
Wouldn’t be nice if images in Excel updated automatically with certain prompts? In this guide, we’re going to show you how to create dynamic images in Excel. Download Workbook Preparing the Dynamic Images First, we need to place our images somewhere in the...
by Ilker | Nov 21, 2019 | Excel Tips & Tricks
A loop is an essential concept for any programming language, and VBA follows the same approach. You can use loops to repeat an action until a specified condition is reached, or move through objects in a group, e.g. all worksheets in a workbook. A loop is an essential...