
January 31, 2017
Return An Array From A UDF
This post is going to look at how to return an array from a udf. My last post looked at
Read MoreJanuary 31, 2017
This post is going to look at how to return an array from a udf. My last post looked at
Read MoreJanuary 24, 2017
I've previously written a UDF to count colored cells and then perform various maths functions on the values in those
Read MoreNovember 25, 2016
We often get asked if we can count colored cells on a worksheet, and yes you can. You could count
Read MoreNovember 11, 2016
In a previous post I discussed storing your UDF's in PERSONAL.XLSB so that you could use them in any workbook.
Read MoreOctober 27, 2016
You've created your own PERSONAL.XLSB and want to use it to store VBA that you are going to use all
Read MoreSeptember 21, 2016
My last post looked at creating a simple user defined function (UDF). This post looks at a little more advanced
Read MoreSeptember 15, 2016
Any user of Excel will have used its functions. From the humble SUM to VLOOKUP, INDEX and MATCH, OFFSET and
Read MoreAugust 25, 2016
Following on from Mynda's post last week on Dependent Data Validation, I've written a little VBA that enhances the functionality.
Read MoreJuly 28, 2016
After you’ve written some VBA, or created your own form, or you’ve found some useful code on the internet, you
Read MoreJuly 21, 2016
You have a workbook with lots of sheets and you want to do things like hide sheets, delete some sheets
Read MoreJune 30, 2016
Prompted by a couple of questions on our Excel forum I thought I'd write about how to record a macro
Read MoreJune 15, 2016
In my previous blog post I created a progress bar using a userform. We can use this progress bar to
Read MoreJune 9, 2016
If your code runs for any noticeable amount of time, you might find that using some sort of visual feedback
Read MoreApril 27, 2016
If you want to maximise Excel on a single monitor you can just click on the maximize button That's ok
Read MoreApril 6, 2016
Imagine that you are preparing data for a pivot table, and you want to make sure that all the cells
Read MoreMarch 15, 2016
You can create very complicated and powerful VBA routines in Excel, but not all VBA code has to be like
Read MoreMarch 3, 2016
If you want to limit the choices available for the values that can be entered into a cell, you could
Read MoreDecember 4, 2015
If VBA can’t execute a statement (command) then a run-time error occurs. By default Excel deals with these, so when
Read MoreNovember 6, 2015
In a previous post I looked at using the FileSystemObject to search through folders on your computer's disk and create
Read MoreOctober 1, 2015
If you want to save data from one Excel session to another, you can store this in the Windows registry.
Read MoreSeptember 25, 2015
If you are using data validation (and you should) to help you with your data entry, then you might find
Read MoreSeptember 4, 2015
If you've been following the previous posts in this series you'll know that by now we have a user form
Read MoreAugust 21, 2015
Carrying on with the Excel form I created in an earlier post, I’m adding code to allow us to insert
Read MoreJuly 9, 2015
When creating Excel userforms it seems like a good idea to check the data going into the form before adding
Read MoreJuly 9, 2015
In my previous post about Excel forms the date picker I used was a 32 bit ActiveX control. If mentioning
Read MoreJuly 2, 2015
Excel forms, or Userforms, can be used to collect information from a user, validate it, then enter that data into
Read MoreJune 17, 2015
I want to be clear that when I say apps for Office in Excel, what I am talking about are
Read MoreMay 20, 2015
When you select a cell, or cells, in Excel, the row and column headers change color to indicate what you
Read MoreMarch 30, 2015
You may want some way of pausing or delaying VBA code execution and you can do this with two functions
Read MoreFebruary 19, 2015
A while ago I wrote a routine using the .Find method to find missing numbers in a sequence. So if
Read More