AirTable or Excel? Why not both?
AirTable is a brilliant tool that lets you build useful apps quickly and without writing code (unless you count formulas as code, which technically they are). However, when it comes to raw data entry and data analysis, AirTable is not that feature rich. Even simple editing features like find...
Replacing VBA with C#?
I spend a fair amount of time writing code in C#, which I enjoy. I occasionally wish I could use C# inside other applications.
One application where I think C# would fit right in is Excel, as a replacement for VBA. VBA is a bit (a lot) behind the times and Microsoft...
Update 04/21/2023: Windy.GoogleTranslate is now a paid package and requires a license to use. Click here to visit the package purchase and info page.
Introduction
You might know that Google Sheets has a GOOGLETRANSLATE function that you can use for translating texts between languages.
Microsoft Excel, on the other hand, doesn't natively have such a function. In...
Monday.com boards are similar to Excel tables
Monday.com boards store data in a tabular format, much like a spreadsheet program such as Microsoft Excel or Google Sheets would.
Boards make it easy for people to collaborate and offer an strict but intuitive user interface for viewing and entering values.
Excel tables, on the other hand, are less...
SQL Query function in Excel
If you're reading this article you probably know that Google Sheets has a QUERY function that allows you to run SQL-like queries against data in the sheet. This function lets you do all sorts of gymnastics with the data in your sheet, be it filtering, aggregating, or pivoting data.
Being a...
SQL support inside Excel
Have you ever worked with data in Excel and thought to yourself: "This would be so much easier to do with SQL"? With the tool I'm about to show you, you can actually use SQL in Excel. It's convenient, powerful and it even comes with intellisense.
First glance
The tool I'm referring to...
Suppose you have an Excel file with a list of international phone numbers (like the left column in the image below) and you want to find out which country each number belongs to, group them by country and convert them to a local number for easier dialing.
Or, you have a mix of national and...
Introduction
Editing a WordPress site can be a pain if you need to make many changes across many pages. But suppose you could view and edit the entire contents of your WordPress site inside Excel. No more navigation, searching and waiting for pages to load. In this article/video, I show you how to do this...
In part 1 of this blog post series we mentioned the most common approach to web scraping and its issues. We also made a small example on how to start web scraping with C#, Selenium and QueryStorm in Excel. Now we'll expand on the example from part 1 and create a more useful web...
Introduction
Web scraping is something that will come up sooner or later in a developer's career - be it for a business requirement or for personal use. So, how do we tackle web scraping when the time comes?
First, let's split the scraping task into three subtasks:
Getting the dataParsing the data to get our resultsOutputting the...