Word Cloud Generator
Seeing word clouds (or tag clouds) in dashboards and web sites quite often, I decided to make one myself using Excel VBA. It is a...
Seeing word clouds (or tag clouds) in dashboards and web sites quite often, I decided to make one myself using Excel VBA. It is a...
Locating first empty cell in a column is a common issue for alot of macros that are designed selecting cells or pasting values to orher...
For Each loop is for looping through each element in a collection. It is especially useful when you don’t know how many elements there is...
Select Case Statement lets you execute several group of statements based on value of an expression. It works like CHOOSE Function in Excel.
Here is a statement that will save you alot of effort and time when coding your macros. With End With Statement lets you work on...
You can call your macros by a couple of easy ways. In this post I’m going to explain how to call your macros to action.