Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I would like to find out how to change the width of a merged cell or column
while it is selected and then return it back when another cell is selected. This is the code I have no but does not work on merged areas. I am using the DV dropdown list and can not read the text in the list becuse the cell is too narrow. I can't widen the cell because it is a state form and has to be in this format.... I am all ears if you can help. Private Sub Worksheet_SelectionChange(ByVal Target As Range) Dim myColumns As Variant Dim myWidthSelected As Variant Dim myWidthNormal As Variant Dim iCtr As Long myColumns = Array("a", "b") myWidthSelected = Array(10, 10) myWidthNormal = Array(1.43, 1.43) If Target.Count 1 Then Exit Sub For iCtr = LBound(myColumns) To UBound(myColumns) If Intersect(Target, _ Me.Cells(1, myColumns(iCtr)).EntireColumn) Is Nothing Then Me.Cells(1, myColumns(iCtr)).EntireColumn.ColumnWidth _ = myWidthNormal(iCtr) Else Me.Cells(1, myColumns(iCtr)).EntireColumn.ColumnWidth _ = myWidthSelected(iCtr) End If Next iCtr End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do widen columns in a column chart? | Charts and Charting in Excel | |||
Widen Chart Columns | Charts and Charting in Excel | |||
hiding columns with merged rows | Excel Discussion (Misc queries) | |||
Merged columns in chart | Excel Discussion (Misc queries) | |||
Sort columns containing merged cells. | Excel Discussion (Misc queries) |