Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
Is it possible to write a macro to find all merged cells and then either delete them or unmerge them. Thanks for help Alfred |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Record a macro when you select all the cells and remove the merged cells (from
the alignment tab of the format dialog). Alfred wrote: Hi Is it possible to write a macro to find all merged cells and then either delete them or unmerge them. Thanks for help Alfred -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
One way:
Public Sub UnmergeAll() ActiveSheet.Cells.MergeCells = False End Sub In article , "Alfred" wrote: Hi Is it possible to write a macro to find all merged cells and then either delete them or unmerge them. Thanks for help Alfred |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
MACRO - Unmerge cells and delete blank columns, leaving data colum | Excel Programming | |||
How do you unmerge cells | Excel Discussion (Misc queries) | |||
Unmerge+copy Macro | Excel Discussion (Misc queries) | |||
macro to unmerge columns | Excel Discussion (Misc queries) | |||
How do I get macro to unmerge cells that have been previously merg | New Users to Excel |