Skip to main content
Learn
Using Do...Loop statements
Use Do...Loop statements to run a block of statements an indefinite number of times. The statements are repeated either while a condition […]
Learn
Excel Macro: Convert Numbers Into Words
Excel does not have a default function to display numbers as English words in a worksheet, but you can do it with […]
Learn
Excel Macro: Print All Workbooks in a Folder
Opening and printing each workbook in a folder is typically a time consuming manual process. This little macro takes care of that annoyance.
Learn
Excel Macro: Open All Workbooks in a Folder
Opening each workbook in a folder or directory is typically a time consuming manual process. This Excel macro takes care of that annoyance.
Docs
Do...Loop statement
Repeats a block of statements while a condition is True or until a condition becomes True. Syntax Do [{ While | Until […]