Content

We show you all the benefits of working with excel

Functions

Learn about the different functions and how to use them

VBA

Learn about macros and how to automate your projects in Excel

Learn about how to use Excel on the web version with all teh functions

Functions

Learn to solve problems in Excel

Functions

Learn about the different functions and how to use them

Courses

Different courses that help improve your skills

Excel courses

Basic – Advanced

Access courses

Basic – Advanced

Power BI courses

Basic – Advanced

How to use Format function in VBA?

The Format function in VBA (Visual Basic for Applications) is used to convert a value into a specified format. It’s particularly useful for formatting dates, times, numbers, and strings to display them in a user-friendly way or to prepare them for printing, reporting, or further processing.

Read more

How to use #If…Then…#Else directive in VBA?

In VBA (Visual Basic for Applications), the If…Then…Else directive is used for conditional execution of code blocks. It allows you to execute certain blocks of code only when a specific condition is met, and optionally execute other blocks of code if the condition is not met

Read more

How to use #Const directive in VBA?

In VBA (Visual Basic for Applications), the #Const directive is used to declare compile-time constants. These constants can be used to control conditional compilation, which means that blocks of code can be included or excluded from the compilation process based on these constant values

Read more

How to use Terminate event in VBA?

In VBA (Visual Basic for Applications), the Terminate event is used in class modules to execute code just before an instance of a class is destroyed. This event can be useful for cleaning up resources, such as closing files or releasing memory that the object may have been using during its lifetime

Read more