Remove blank rows in Excel

Remove blank rows - Featured Image

Data comes in all shapes, sizes and forms, so it’s not uncommon to find a dataset with a lot of blank rows.  Sometimes it’s not an issue; other times, it causes big problems.  Therefore, the best practice in Excel, is to remove blank rows.  If there are only a few blanks, we could do this … Read more

Power Query – Tips and Tricks

Power Query - Top Tips

It’s now time to bring this Power Query series to a close.  And where better place to end than with some tips and tricks to help you to succeed. Change the default Close & Load options Power Query’s default Close & Load options assume we want to load the data into an Excel table.  As … Read more

Resize a UserForm with VBA or Windows API

Resize UserForm VBA Windows API

When creating a VBA UserForm, we generally set it to a specific size.  Most other forms and windows within the Excel and Windows environments do not have a fixed sized; they can be resized by the user.  With a bit of coding magic, we can achieve a similar resizing effect for our VBA UserForms.  This … Read more

Hide or disable a VBA UserForm [X] close button

Hide or Disable UserForm Close Button

While working on a project recently, I thought about hiding the [X] close button which is at the top of the VBA UserForm.  I managed to identify three options for achieving this.  If you are thinking about the same thing, then this post will give you the answers you’re looking for. Download the example file: Join … Read more

VBA code to select all merged cells

VBA Code Snippets

Merged cells can be frustrating when using VBA code, as they just don’t operate in the same way as normal cells.  Even when using Excel without VBA, merged cells cause  a whole host of frustrating error messages. Even if you don’t use them, lots of other users do.  So you will encounter merged cells in … Read more