If You Love Excel – Here is Why You Need to Learn VBA

If You Love Excel – Here is Why You Need to Learn VBA

You are good with Excel. You love it. It gets the job done. You even heard about Macros, or VBA, but pushed it aside. It is not for you, you said to yourself. It is too complicated, you thought. I am here to tell you: it is exactly what you need to do next. Here is...
Recursive Functions with Excel VBA

Recursive Functions with Excel VBA

Sometimes writing a short, simple function, can hide in-depth processing that resolves quickly – by calling… itself * What is a recursive function, how does it work, what to be aware of and how it is implemented in Excel VBA – read on… What is a Recursive Function?...
Frequently Asked Questions on the Excel VBA Inner Circle Program

Frequently Asked Questions on the Excel VBA Inner Circle Program

I received many questions on The Excel VBA Inner Circle program since it was launched. I summarize here the most frequent questions and my answers to them. Last week I published a Blog post I thought would be all you may need in order to choose the right Inner Circle...
How the Excel VBA Inner Circle Came to Be?

How the Excel VBA Inner Circle Came to Be?

These days, I am launching a unique home for Excel VBA enthusiasts and professionals. This is a result of a careful examination of the Excel VBA market, constant dialog with customers and years of projects, authoring and teaching. Here is the story of the Excel VBA...
Excel VBA: Arrays

Excel VBA: Arrays

Arrays, one of the most flexible, performant and popular data structure in almost any programming language becomes especially useful in Excel. All you need to know about arrays in VBA is right here In case you missed it, the last month in my Blog was dedicated to data...
Excel VBA: User Defined Data Types

Excel VBA: User Defined Data Types

Choosing the right data structures as we plan our program is especially important. Molding our data to be structured to our specific requirements makes our program more readable, maintainable, and efficient. What can we do beyond integer, string, and date? In my last...
Excel VBA: Data Types and Option Explicit

Excel VBA: Data Types and Option Explicit

Why do we need to declare data types for our variables, what purpose does it serve? * Why do some programming languages not care about it too much and what data type are available for us in VBA? What are data types? A data type is a structure to store data with given...