
December 13, 2018
Play Audio and Video in Excel
We've had a few forum questions recently asking how to play audio files in Excel. Normally I'd just use my
Read MoreDecember 13, 2018
We've had a few forum questions recently asking how to play audio files in Excel. Normally I'd just use my
Read MoreNovember 30, 2018
You might want to save your charts as images that can then be used in other applications, like email or
Read MoreNovember 22, 2018
Mynda wrote a post about line charts vs dot plots where one of the steps in setting up the dot
Read MoreOctober 24, 2018
My last post looked at web scraping using VBA, where I loaded a single page and extracted content. In this
Read MoreOctober 17, 2018
We can use VBA to retrieve webpages and comb through those pages for data we want. This is known as
Read MoreSeptember 19, 2018
Let's say you have a range that you want to convert to a table Something like this that has fills,
Read MoreSeptember 11, 2018
If you end up with a workbook that contains custom styles, removing all of these may be a pain depending
Read MoreAugust 31, 2018
The SUBSTITUTE function allows you to change text in a string, or a range of strings, but there is more
Read MoreAugust 2, 2018
Last week I looked at getting real time data into Power BI using PubNub. This week I want to take
Read MoreJuly 27, 2018
In this post I'm going to look at getting real time data (RTD) into Power BI using a real time
Read MoreJuly 13, 2018
In this post I'm going to look at how you can create an Azure Machine Learning experiment to predict diamond
Read MoreJuly 3, 2018
If you've written subs or functions in your own add-in, you can use them in your worksheet as you would
Read MoreMay 31, 2018
Last week I wrote about getting real time data into Excel using PyXLL and Python code. I described a way
Read MoreMay 24, 2018
Updated April 2020 Excel does support getting real time data into the worksheet with the RTD function, but this requires
Read MoreApril 19, 2018
We had a post on the forum recently asking how to create a timer in Excel, to record how long
Read MoreApril 13, 2018
Excel has the concept of volatile and non-volatile functions. Microsoft define a volatile function as one that is recalculated every
Read MoreMarch 29, 2018
On IBM compatible PC's, many characters that can't be typed on a keyboard can be entered by holding down the
Read MoreMarch 9, 2018
The AutoSum shortcut, ALT+= (ALT and = at the same time), allows you to automatically sum rows and/or columns. How
Read MoreFebruary 22, 2018
If you want to duplicate something you can copy (CTRL+C) and paste (CTRL+V). But there's a quicker way that only
Read MoreNovember 24, 2017
My last post looked at using Python to plot equations in Excel with DataNitro. In this one I want to
Read MoreNovember 17, 2017
Something I've wanted to do easily in Excel is plot equations. If I have something like 2x2 + 3x +
Read MoreOctober 26, 2017
Before VBA there were XLM macros. VBA was introduced in Excel version 5, so these Excel macros are also known
Read MoreAugust 10, 2017
VBA SELECT CASE allows you to test an expression against multiple conditions, and then carry out a series of commands
Read MoreAugust 3, 2017
The VBA IF THEN ELSE statement lets you test a condition, and then carry out other commands if the test
Read MoreJune 21, 2017
Way back, when Excel 4.0 was around, it used a macro language called XLM. VBA was introduced in Excel 5.0.
Read MoreJune 6, 2017
Microsoft recently announced a project called Script Lab, previously known as 'Add-In Playground', which aims to help you learn how
Read MoreMay 12, 2017
After my last post on debugging VBA I received a few comments with other tips or commands people use for
Read MoreMay 4, 2017
When you write VBA, or any programming language, you are going to encounter errors in it, or should we call
Read MoreMarch 10, 2017
If you are working with strings (a sequence of letters, numbers or other characters) in VBA then you are going
Read More