Tag: VBA

vba vlookup
Excel, MS Office

VBA VLOOKUP – Using VLOOKUP in VBA

The Excel VLOOKUP function allows you to lookup a value in a table based on a corresponding lookup value in the first column of a table. Below we will explore how to use VLOOKUP in VBA using tWorksheetFunctions as well as how to use the VBA Dictionary as an alternate approach. VLOOKUP is easily used […]

application filedialog featured
Excel, MS Office, Outlook, PowerPoint, Word

VBA FileDialog – Opening, Selecting and Saving files and folders

Often in VBA we need to ask the users to select files or directories before we execute the actual functionality of our macro. Welcome to the VBA Open file dialog post. Today we will learn how to use the Application.FileDialog, to understand the various msoFileDialogFilePicker file dialog picking options and how to properly manage these […]