How to install or uninstall Excel Add-ins (Windows & Mac)

How to install or uninstall Excel Add-ins

An Excel Add-in is a mini-software application that provides Excel with enhanced functionality and automation features. Whilst they can be created by third-party suppliers, even Microsoft themselves develop add-ins to provide additional functionality. Add-ins can take a number of forms: COM Add-ins and Office Download Store Add-ins will have their own installation processes. Excel Add-ins, however, have … Read more

How to run a macro from a macro (from another workbook)

VBA Code Snippets

In VBA, there are several ways to run a macro from a macro, and even run a macro from another workbook. On forums, these methods are used interchangeably depending on the commenter’s personal preferences. This can lead to confusion for anybody trying to learn VBA. Depending on the method for running/calling the macro, the syntax is slightly … Read more

How to resize Excel sheet – 4 ways: manual & automatic

Auto resize excel sheet

This post looks at how to Resize an Excel sheet. It’s a common requirement for users and is especially useful when creating dashboards for different-size monitors. Every office I have ever worked in has been an equipment battleground. It didn’t matter what the equipment was; it just had to be better than everybody else. A new keyboard, … Read more

How to close VBA UserForm: Hide vs Unload

Close VBA UserForm

VBA UserForms are a key tool for managing user interactions. When UserForms are well designed, they guide users through the options and settings without any help file or guidance. However, from my own UserForm development, I know one of the most overlooked aspects is how to close VBA UserForms. Is it best to hide or unload the … Read more

How to remove spaces in Excel (7 simple ways)

Remove spaces in Excel - Featured Image

The space character for an Excel user can be a real problem. When exporting data from various IT systems, that export will often include extra spaces around values. Finding a way to remove spaces in Excel is a crucial skill for every user. We often can’t see the space characters, but Excel sees them. They … Read more

How to convert color codes (RGB, HSL, HSV, Hex, Long, CMYK)

Convert Color Codes - Featured image

I often find myself converting between different formats of color codes; especially from hex to RGB and back again. Rather than firing up Google and searching for color conversion tools online, I decided to write my own User Defined Functions in Excel, now I can calculate the result within a worksheet instead. The functions in this … Read more