ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   width of Merged cells within un merged cells (https://www.excelbanter.com/excel-programming/339933-width-merged-cells-within-un-merged-cells.html)

Darin Kramer

width of Merged cells within un merged cells
 

Another one..
Assume cells e1,f1,g1 are merged (as are e2,f2,g2) up to e100
Same thing with cells in columns i,j,k
Cells in the inbetween columns are NOT merged.

I want to create a macro to size column width to 15 (each) of merged
cells in column e,f,g.
If I manually select the column in excel, I can do it.(ie click on the
column letter)
If I try to write basic VB to do (see below) it expands my column
selection to the entire data iin the sheet(cols a - k) and then applies
the column width to all of these columns (which I dont want)
Unfortunately I cant unmerge the cols

Any ideas???

Basic VB im using:

Columns("E:G").Select
Selection.ColumnWidth = 15


*** Sent via Developersdex http://www.developersdex.com ***

Bernie Deitrick

width of Merged cells within un merged cells
 
Darin,

Columns("E:G").ColumnWidth = 15

worked for me....

--
HTH,
Bernie
MS Excel MVP


"Darin Kramer" wrote in message
...

Another one..
Assume cells e1,f1,g1 are merged (as are e2,f2,g2) up to e100
Same thing with cells in columns i,j,k
Cells in the inbetween columns are NOT merged.

I want to create a macro to size column width to 15 (each) of merged
cells in column e,f,g.
If I manually select the column in excel, I can do it.(ie click on the
column letter)
If I try to write basic VB to do (see below) it expands my column
selection to the entire data iin the sheet(cols a - k) and then applies
the column width to all of these columns (which I dont want)
Unfortunately I cant unmerge the cols

Any ideas???

Basic VB im using:

Columns("E:G").Select
Selection.ColumnWidth = 15


*** Sent via Developersdex http://www.developersdex.com ***




Darin Kramer

width of Merged cells within un merged cells
 

Thanks Bernie,

Works for me too now!


*** Sent via Developersdex http://www.developersdex.com ***


All times are GMT +1. The time now is 06:49 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com