Center Across Selection Macro

custom data types in vba

July 2, 2019

Custom Data Types in VBA

If you are working with several variables that relate to one thing, for example you are working with employee data,

Read More
Static variables in VBA

April 4, 2019

Static Variables in VBA

Normally variables cease to exist once your Sub or Function has finished executing. Static variables allow you to preserve a

Read More
vba like operator

January 15, 2019

VBA Like Operator

The VBA Like operator allows you to compare strings against a pattern. You can search a string to check if

Read More
save chart as image

November 30, 2018

Save Chart as Image

You might want to save your charts as images that can then be used in other applications, like email or

Read More
web scraping with vba

October 17, 2018

Web Scraping With VBA

We can use VBA to retrieve webpages and comb through those pages for data we want. This is known as

Read More