Excel VBA combine rows into cell

Excel VBA combine rows into cell
Posted on
This Excel VBA tutorial explains how to combine rows into Cell. You may also want to read: Separate line break data into different rows Delimit Cell value into rows Excel VBA combine rows into cell In my previous post, I demonstrated how to delimit a Cell into separate rows,  one example is that you copy a email list and you want to put each email address into different rows. From: ...
Read More

Excel create Pivot Table using PowerPivot

Excel create Pivot Table using PowerPivot
This Excel tutorial explains how to create Relationship and create Pivot Table using PowerPivot. You may also want to read: Create Relationship in Microsoft Access PowerPivot in Excel In Excel version 2016, PowerPivot is pre-installed and you can see the option in the ribbon tab. For previous versions of Excel, some versions cannot support PowerPivot. If you are not using Excel 20...
Read More

Excel VBA find all Cells contain Named Range

Excel VBA find all Cells contain Named Range
This Excel VBA tutorial explains how to find all Cells contain Named Range using Macro. You may also want to read: Find all external links and broken links in workbook Replace Named Range with formula Find all Cells contain Named Range In Excel spreadsheet, we can define Named Range under Name Manager (Formulas > Name Manager) We can refer to Name Manager to see the formula th...
Read More

Excel VBA Named Range Properties

Excel VBA Named Range Properties
Posted on
This Excel VBA tutorial explains some common Properties of Name Object (Named Range), and demonstrate how to replace named Range with formula. You may also want to read: Excel find all external links and broken links in workbook Excel VBA Named Range Properties In Excel spreadsheet, we can define Named Range under Name Manager (Formulas > Name Manager) In the below screenshot, I have...
Read More

Excel extract text in brackets

Excel extract text in brackets
This Excel tutorial explains how to extract text in brackets or in defined text in Excel spreadsheet and VBA. Extract text in brackets in Excel spreadsheet In the previous post, I demonstrated how to remove text in brackets or in any defined text, in this post I will explain how to extract the text in brackets or in any defined text. In Excel spreadsheet, you can extract any substring using...
Read More

Excel VBA select multiple files in dialog

Excel VBA select multiple files in dialog
Posted on
This Excel VBA tutorial explains how to select multiple files in dialog using Application.GetOpenFileName. Excel VBA select file in dialog In many applications, you would see a "browse" button where you can select files for the application to process. In Excel VBA, you can create a Macro to open the browse dialog. After you select the target file, the file path is stored in a VBA Array, t...
Read More

Access Excel capitalize first letter in a sentence

Access Excel capitalize first letter in a sentence
This Access Excel tutorial explains how to capitalize first letter in a sentence using VBA custom Function. Capitalize first letter in a sentence In Excel spreadsheet, there is a Function called Proper, which converts all the first letter of each word to capital letter. Example  Using Proper Function he is a boy. she is a girl. He Is A Boy. She Is A Girl. he is a boy. his name...
Read More

Access Excel remove text in brackets

Access Excel remove text in brackets
This Access Excel VBA tutorial explains how to remove text in brackets using custom Function. You may also want to read: Change text color in brackets Extract text in brackets Access Excel remove text in brackets I was inspired to create this post because the HR system I am using (Workday) is very annoying, some data fields are actually a combination of two different fields, the additio...
Read More

Excel VBA change partial text color in Cell

Excel VBA change partial text color in Cell
This Excel VBA tutorial explains how to change partial text color in a Cell using Macro. You may also want to read: Access Excel remove text in brackets Change partial text color in spreadsheet In Excel spreadsheet, you can change part of the text in a Cell by highlighting the text and then change the font color. Suppose you want to change the text World in Cell A1 to red color. First...
Read More

Access Excel VBA Array

Access Excel VBA Array
This VBA tutorial explains how to create and use VBA Array in Access and Excel VBA. You may also want to read: Store unique array item with Scripting Dictionary Access Excel VBA Array In Excel worksheet, you can convert a formula arguments to Array by pressing CTRL+SHIFT+ENTER, click here to see example. In VBA, Array is a variable that can store multiple data of the same data type. ...
Read More