Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try wrapping the merging part of your code in
Application.EnableEvents = False ' merge here Application.EnableEvents = True HTH, JP On Jan 15, 3:15*pm, "Carrie_Loos via OfficeKB.com" <u34134@uwe wrote: I have this code that someone helped me with and it works great except the message "The selection contains multiple data values. Merging into one celll will keep the upper left most data only" message. I have to answer "OK" in order for the code to continue to loop. Does anyone know a way to get around this in the code? Sub MergeCells() ActiveCell.Activate RowCount = ActiveCell.Row ColCount = 1 Do While Cells(RowCount, ColCount) < "" * *If Cells(RowCount, ColCount) = 1 Then * * * StartCol = ColCount * * * Data = 1 * * * Do While Cells(RowCount, ColCount) = 1 And _ * * * * *Cells(RowCount, (ColCount + 1)) = 1 * * * * *ColCount = ColCount + 1 * * * * *Data = Data & " 1" * * * Loop * * * Range(Cells(RowCount, StartCol), _ * * * * *Cells(RowCount, ColCount)). _ * * * * *MergeCells = True * * * Cells(RowCount, StartCol) = Data * * * On Error Resume Next * *End If * *ColCount = ColCount + 1 Loop * * ActiveCell.Offset(1, 0).Activate End Sub Thanks Carrie -- Message posted via OfficeKB.comhttp://www.officekb.com/Uwe/Forums.aspx/excel-programming/200801/1 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2007 - Why is Cell Merging Disabled? | Excel Discussion (Misc queries) | |||
I need to split a cell without merging in excel '03 | Excel Discussion (Misc queries) | |||
excel cells are merging onto the next cell | Excel Worksheet Functions | |||
Excel adjust row height upon merging 2 cell with word wrap | Excel Discussion (Misc queries) | |||
peculiar problem in cell references while merging excel sheets | Excel Programming |