How to change column width and row height

JenniferMurphy

Well-known Member
Joined
Jul 23, 2011
Messages
2,532
Office Version
  1. 365
Platform
  1. Windows
I just learned a very helpful way to change a range of columns to a set width using paste special from this page:

Change the column width and row height

But of course, in typical m$ft fashion, they only provide half-baked solutions. Even though the title says "column width and row height", the text only deals with column widths. And the paste special options do not include row height as an option.

Is there any comparable way to change a bunch of rows to the same specific height? I don't mean by dragging the border. I mean by matching some existing cell height like what works for columns.
 
Jennifer,

Couldn't you, for each sheet, change the values of the variables? That is my idea...
Maybe i'm not understanding what you're trying to do...

M.
If you mean edit the Sub, sure, I could do that, but it would be a royal pain in the knickers.

With columns, my tables need to grow and shrink to fit the data. But I often have titles above the tables that are wider than the data. The titles are set to expand into adjacent cells, so I can't just select all of the table columns and double-click the rightmost border to get Excel to auto-fit them because it will fit those titles, which are way too wide. This handy trick of selecting one cell allows me to auto-fit one column, one with no titles, and then match all of the other columns to it. Just 3 quick steps and done.

I would like something like that for the rows. If m$ft had any commitment to its users, there would be a similar feature for the rows. I was just asking if there might be something I don't know about. But having to edit a Sub every time isn't going to work. And I would have to copy that Sub to every workbook, because the geniuses at m$ft did not provide a way for a sheet to access a Sub in an add-in module. (sigh) And that would make them all .xlsm workbooks. Just another pof the many joys of working with m$ft products.
 
Upvote 0

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
If I want to run this from a sheet, how do I get the row numbers that I want passed to either Sub?

In one go that's not possible. After all, you FIRST will have to select a cell whose height you want to pass to the procedure, which procedure in turn wants to be informed of the TARGET rows as well. How do we inform that procedure about the target rows? We can't, at least not in one go. So what do you have in mind? Is a procedure that you have to call twice in succession from Macros Dialog (ALT F8) a suitable way for you?
 
Upvote 0
In one go that's not possible. After all, you FIRST will have to select a cell whose height you want to pass to the procedure, which procedure in turn wants to be informed of the TARGET rows as well. How do we inform that procedure about the target rows? We can't, at least not in one go. So what do you have in mind? Is a procedure that you have to call twice in succession from Macros Dialog (ALT F8) a suitable way for you?
No, not really. It doesn't come up that often. It mostly has to do with columns. I actually wouldn't use it that much for rows. I was just annoyed at yet another instance of m$ft failing to provide consistency and common sense.

Thanks to you and Marcelo for your efforts. I apprediate it.
 
Upvote 0
Might have an alternative that suits.
Select a single cell which height will become the reference height. Then select (using CTRL and SHIFT) the cells (or entire rows) of which the row height has to be adjusted. Finaly hold down Left CTRL and right click upon the selected area. Done.

This goes in the module of ThisWorkbook:
VBA Code:
Option Explicit

Private Sub Workbook_SheetBeforeRightClick(ByVal Sh As Object, ByVal Target As Range, Cancel As Boolean)

    AdjustRowHeight Target

End Sub


This goes in a standard module:
VBA Code:
Option Explicit

#If VBA7 Then
    Declare PtrSafe Function GetKeyState Lib "user32" (ByVal nVirtKey As Long) As Integer
#Else
    Declare Function GetKeyState Lib "user32" (ByVal nVirtKey As Long) As Integer
#End If

Const VK_LCONTROL = &HA2

Public Function IsLeftControlPressed() As Boolean
    If GetKeyState(VK_LCONTROL) < 0 Then
        IsLeftControlPressed = True
    Else
        IsLeftControlPressed = False
    End If
End Function

Public Sub AdjustRowHeight(ByVal argTarget As Range)
    Dim c As Range, h As Long
    If IsLeftControlPressed Then
        For Each c In argTarget.Areas
            If c.CountLarge = 1 Then
                h = c.RowHeight
                Exit For
            End If
        Next c
        argTarget.RowHeight = h
    End If
End Sub
 
Upvote 0
Might have an alternative that suits.
Select a single cell which height will become the reference height. Then select (using CTRL and SHIFT) the cells (or entire rows) of which the row height has to be adjusted. Finaly hold down Left CTRL and right click upon the selected area. Done.
Wow! That will take me a minute or two to get my head around. ?

I am amazed and impressed by the VBA skills of some of the participants of this board. Makes me feel like a slacker. ?

And all this because the AAs at m$ft were too lazy or too clueless to just provide for rows what they already did for columns. I think if I had back all the time I have spent over the years doing extra work because of gaps, bugs, and outright screw-ups by the geniuses at m$ft, I would be 20 years younger. ?
 
Upvote 0

Forum statistics

Threads
1,214,924
Messages
6,122,294
Members
449,077
Latest member
Rkmenon

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top