Worksheet.Range("A1CellReference").UnMerge To unmerge cells with VBA, use a statement with the following structure: #2: Unmerge Cells VBA Code to Unmerge Cells The following GIF illustrates the results of executing this macro example. Worksheets("Merge Cells").Range("A5:E6").Merge The following macro merges cells A5 to E6 of the worksheet named “Merge Cells”. Description: Merges the cells represented by the Range object you specify in item #2 above to create a merged cell.
Enclose the entire cell range address within quotations (“”). Separate FirstCell and LastCell using the range operator, a colon (:). Specify FirstCell and LastCell using an A1-style cell reference. Description: Returns a Range object representing the cell range between FirstCell and LastCell.VBA Construct: Worksheet.Range property.Description: Returns a Worksheet object representing the worksheet you work with.VBA Construct: Workbook.Worksheets property.Worksheet.Range("FirstCell:LastCell").Merge To merge cells with VBA, use a statement with the following structure: You can find additional VBA and Macro Tutorials in the Archives.
HOW DO YOU MERGE CELLS IN EXCEL AND KEEP DATA HOW TO