>Excel 2003 on XP. As header.
>
[quoted text clipped - 4 lines]
>
>Thanks.
>Mike
>
[quoted text clipped - 3 lines]
>You will be much better off without any merged cells which create no end of
>problems.
Agree, but I'm working with sheets designed by someone else 3 years
ago. There are lots of cells that are 3 cells merged and my updates
have to fit it.
Thanks anyway.
>Gord Dibben MS Excel MVP
>
[quoted text clipped - 6 lines]
>>
>>Thanks.
Jim Rech - 31 Jul 2008 19:54 GMT
You can always create your own shortcuts with a macro. Copy these two to a
workbook and run the first. Then Ctrl-Shift-M will toggle Merge and Center.
Sub SetMandC()
Application.OnKey "^M", "MandC"
End Sub
Sub MandC()
If Selection.MergeCells Then
Selection.MergeCells = False
Selection.HorizontalAlignment = xlGeneral
Else
Selection.MergeCells = True
Selection.HorizontalAlignment = xlCenter
End If
End Sub

Signature
Jim
|
| >Mike
[quoted text clipped - 21 lines]
| >>
| >>Thanks.