How To Use VBA Complex Calculations In Excel2020-10-24VBA LoopHow to define complex numbers in Excel and perform mathematical operations such as addition, subtraction, multiplication and division.
How To Use VBA Controls Collection In Excel2020-10-24VBA UserformWhen creating Userforms in Excel VBA, you can use the Controls collection to easily loop through controls and set a property of each control to a specific value.
How To Use VBA Convert to Proper Case In Excel2020-10-24VBA String ManipulationBelow we will look at a program in Excel VBA that converts text to proper case.
How To Use VBA Dynamic Range In Excel2020-10-23VBA Range ObjectBelow we will look at a program in Excel VBA that colors the maximum value of a dynamic range.
How To Use VBA Count Words In Excel2020-10-23VBA String ManipulationBelow we will look at a program in Excel VBA that counts the number of words in a selected range.
How To Use VBA Create a Footer Before Printing2020-10-23VBA EventsBelow we will look at a program in Excel VBA that creates a footer before printing a workbook.
How To Use VBA Create a Pattern In Excel2020-10-23VBA LoopBelow we will look at a program in Excel VBA that creates a pattern.
How To Use VBA Currency Converter In Excel2020-10-23VBA UserformBelow we will look at a program in Excel VBA which creates a Userform that converts any amount from one currency into another.
How To Use VBA Custom Average Function In Excel2020-10-23VBA FunctionBelow we will look at a program in Excel VBA which creates a User Defined Function.
How To Use VBA DateDiff Function In Excel2020-10-23VBA Date and TimeThe DateDiff function in Excel VBA can be used to get the number of days between two dates.
How To Use VBA Debugging In Excel2020-10-23VBA Macro ErrorsThis example teaches you how to debug code in Excel VBA.
How To Use VBA Delay a Macro In Excel2020-10-23VBA Date and TimeTo execute a sub in Excel VBA after a specific time, use onTime, Now and the TimeValue function.
How To Use VBA Delete Blank Cells In Excel2020-10-23VBA If Then StatementBelow we will look at a program in Excel VBA that deletes blank cells.
How To Use VBA Dependent Combo Boxes In Excel2020-10-23VBA UserformBelow we will look at a program in Excel VBA which creates a Userform that contains dependent combo boxes.
How To Use VBA Do Until Loop In Excel2020-10-23VBA LoopAlthough not used very often on this site, you might find yourself in a situation where you want to use the Do Until Loop in Excel VBA.