
September 3, 2020
Power Query Custom Functions
If you're familiar with using Excel functions (and of course you should be) then you'll know that a function typically
Read MoreSeptember 3, 2020
If you're familiar with using Excel functions (and of course you should be) then you'll know that a function typically
Read MoreAugust 20, 2020
I've previously described how to use a form to search for a distinct value, like a unique ID. This time
Read MoreAugust 6, 2020
My previous post on using Power Query to access API's looked at API's that required either basic or no authorization.
Read MoreJuly 23, 2020
An Application Programming Interface (API) allows a program to retrieve data from a system. A 'program' could be something written
Read MoreJuly 3, 2020
If you are going to use animation in your charts, you should do it to enhance the story your data
Read MoreJune 4, 2020
Let's say we need to assign staff to work different shifts and no person can work both early and late
Read MoreMay 27, 2020
If you are using a filter on a 'regular' pivot table (one that isn't using source data from Power Pivot),
Read MoreMay 8, 2020
I've previously written about getting real time data (RTD) into Excel using Python. In this post I'm going to chart
Read MoreApril 20, 2020
Data validation lists will only let you choose one item from the list. But what if we have a situation
Read MoreMarch 18, 2020
I've written about using calendars/date pickers in userforms before but this one is particularly easy and flexible to use, even
Read MoreMarch 11, 2020
Here's the scenario: I want to send different pages of my pivot table report to different email recipients. I can
Read MoreFebruary 26, 2020
If you use a scatter plot for a dataset that has discrete values in one dimension, for example your x-axis
Read MoreJanuary 28, 2020
I was recently asked to provide the ability to search a list of records (like a table) using a user
Read MoreJanuary 11, 2020
If you need to plot data that has one variable where values can be the same or very similar, for
Read MoreOctober 30, 2019
One thing I often found frustrating with VBA is the lack of any easy way to see the values in
Read MoreOctober 9, 2019
Typically if you need to lookup a value from a table you'd employ VLOOKUP or INDEX/MATCH. However if your data
Read MoreSeptember 24, 2019
Dates and times are stored in Excel as decimals known as serial numbers. The date is represented by the whole
Read MoreSeptember 6, 2019
Following on from my Introduction to PowerApps and Excel, this post looks at some customizations we can do to our
Read MoreAugust 30, 2019
What are PowerApps? Microsoft describe PowerApps as a suite of apps, services, connectors and data platform that provides a rapid
Read MoreAugust 1, 2019
To start with let's understand that I'm talking about the 'old' style comments like the one on the left. In
Read MoreJuly 24, 2019
If we want to find whether or not a character or string occurs within another string we can use FIND
Read MoreJuly 2, 2019
If you are working with several variables that relate to one thing, for example you are working with employee data,
Read MoreMay 30, 2019
I've written about web scraping before using VBA, but never about interacting with the website to do things like filling
Read MoreMay 3, 2019
One of our most popular blog posts is Excel IF AND OR Functions Explained which has over 800 comments at
Read MoreApril 26, 2019
Sometimes we get requests to provide a VBA solution to a problem. But when we look at the problem, VBA
Read MoreApril 10, 2019
If you've worked with merged cells you may know that they can cause issues with things like copying and pasting,
Read MoreApril 4, 2019
Normally variables cease to exist once your Sub or Function has finished executing. Static variables allow you to preserve a
Read MoreMarch 1, 2019
If you need Excel to run some VBA at a specific time, or repeatedly at set intervals, you can use
Read MoreFebruary 22, 2019
RegEx stands for regular expression and is a sequence of characters that defines a pattern that can be used to
Read MoreJanuary 15, 2019
The VBA Like operator allows you to compare strings against a pattern. You can search a string to check if
Read More