+ Reply to Thread
Results 1 to 5 of 5

Row Height to fit

Hybrid View

  1. #1
    Sal
    Guest

    Row Height to fit

    Hi All,

    When I first start a worksheet and set word wrap to ON in a cell, the row
    height will grow to suit the contents of the cell. If I later set the row ht,
    the contents 'could' actually not be visible.

    How can I tell the row height to grow with the contents?
    --
    Just trying to get some answers

  2. #2
    Jim Rech
    Guest

    Re: Row Height to fit

    Let me answer the question I think you're asking..

    In a new worksheet all rows are set to 'auto-fit' their row heights. That
    means if you turn on word wrap or if you increase the font size of a cell,
    the row's height will automatically increase to accommodate it. However, if
    you manually set a row's height, it no longer will auto-fit. Excel assumes
    that when you manually set a row height it's because that is the height you
    want, so it maintains it.

    To get back to autofit use Format, Row, AutoFit. A shortcut is to
    double-click the separator between the row numbers in the left border.

    --
    Jim
    "Sal" <sal@example.com> wrote in message
    news:5161AB28-D657-4EFF-B131-21674BF119C0@microsoft.com...
    | Hi All,
    |
    | When I first start a worksheet and set word wrap to ON in a cell, the row
    | height will grow to suit the contents of the cell. If I later set the row
    ht,
    | the contents 'could' actually not be visible.
    |
    | How can I tell the row height to grow with the contents?
    | --
    | Just trying to get some answers



  3. #3
    Sal
    Guest

    Re: Row Height to fit

    Hi Jim,

    ....and thanks. You were thinking the right question. And your answer is
    correct for all my rows except the ones with merged cells and they are really
    the problem.

    I have a couple rows with merged cells that increase in content every once
    in a while and I would like the cell's ht to increase as well. Is it possible
    that I'm destined to manually (yuch) adjust them each time?

    Oh please say it isn't so.

    Sal
    --

    "Jim Rech" wrote:

    > Let me answer the question I think you're asking..
    >
    > In a new worksheet all rows are set to 'auto-fit' their row heights. That
    > means if you turn on word wrap or if you increase the font size of a cell,
    > the row's height will automatically increase to accommodate it. However, if
    > you manually set a row's height, it no longer will auto-fit. Excel assumes
    > that when you manually set a row height it's because that is the height you
    > want, so it maintains it.
    >
    > To get back to autofit use Format, Row, AutoFit. A shortcut is to
    > double-click the separator between the row numbers in the left border.
    >
    > --
    > Jim


  4. #4
    Jim Rech
    Guest

    Re: Row Height to fit

    You should have mentioned merged cells initially. Yes, merged cells are
    totally ignored for purposes of autofitting row heights.

    If you're familiar with macros this might save you a little hassle. Be sure
    to read all the rules<g>:

    ''Simulates row height autofit for a merged cell if the active cell..
    '' is merged.
    '' has Wrap Text set.
    '' includes only 1 row.
    ''Unlike real autosizing the macro only increases row height
    '' (if needed). It does not reduce row height (because another
    '' merged cell on the same row may needed a greater height
    '' than the active cell).
    Sub AutoFitMergedCellRowHeight()
    Dim CurrentRowHeight As Single, MergedCellRgWidth As Single
    Dim CurrCell As Range
    Dim ActiveCellWidth As Single, PossNewRowHeight As Single
    If ActiveCell.MergeCells Then
    With ActiveCell.MergeArea
    If .Rows.Count = 1 And .Cells(1).WrapText = True Then
    Application.ScreenUpdating = False
    CurrentRowHeight = .RowHeight
    ActiveCellWidth = ActiveCell.ColumnWidth
    For Each CurrCell In Selection
    MergedCellRgWidth = CurrCell.ColumnWidth +
    MergedCellRgWidth
    Next
    .MergeCells = False
    .Cells(1).ColumnWidth = MergedCellRgWidth
    .EntireRow.AutoFit
    PossNewRowHeight = .RowHeight
    .Cells(1).ColumnWidth = ActiveCellWidth
    .MergeCells = True
    .RowHeight = IIf(CurrentRowHeight > PossNewRowHeight, _
    CurrentRowHeight, PossNewRowHeight)
    End If
    End With
    End If
    End Sub


    --
    Jim
    "Sal" <sal@example.com> wrote in message
    news:FB453D20-50D6-413E-A9D2-A38CECF685A3@microsoft.com...
    | Hi Jim,
    |
    | ...and thanks. You were thinking the right question. And your answer is
    | correct for all my rows except the ones with merged cells and they are
    really
    | the problem.
    |
    | I have a couple rows with merged cells that increase in content every once
    | in a while and I would like the cell's ht to increase as well. Is it
    possible
    | that I'm destined to manually (yuch) adjust them each time?
    |
    | Oh please say it isn't so.
    |
    | Sal
    | --
    |
    | "Jim Rech" wrote:
    |
    | > Let me answer the question I think you're asking..
    | >
    | > In a new worksheet all rows are set to 'auto-fit' their row heights.
    That
    | > means if you turn on word wrap or if you increase the font size of a
    cell,
    | > the row's height will automatically increase to accommodate it.
    However, if
    | > you manually set a row's height, it no longer will auto-fit. Excel
    assumes
    | > that when you manually set a row height it's because that is the height
    you
    | > want, so it maintains it.
    | >
    | > To get back to autofit use Format, Row, AutoFit. A shortcut is to
    | > double-click the separator between the row numbers in the left border.
    | >
    | > --
    | > Jim



  5. #5
    Sal
    Guest

    Re: Row Height to fit

    Wow Jim, this is fantastic. Thanks for the free code. I will use it although
    the contents do indeed decrease as well as increase so for this instance it
    will not work.

    Thanks again.
    --
    Just trying to get some answers


    "Jim Rech" wrote:

    > You should have mentioned merged cells initially. Yes, merged cells are
    > totally ignored for purposes of autofitting row heights.
    >
    > If you're familiar with macros this might save you a little hassle. Be sure
    > to read all the rules<g>:
    >
    > ''Simulates row height autofit for a merged cell if the active cell..
    > '' is merged.
    > '' has Wrap Text set.
    > '' includes only 1 row.
    > ''Unlike real autosizing the macro only increases row height
    > '' (if needed). It does not reduce row height (because another
    > '' merged cell on the same row may needed a greater height
    > '' than the active cell).
    > Sub AutoFitMergedCellRowHeight()
    > Dim CurrentRowHeight As Single, MergedCellRgWidth As Single
    > Dim CurrCell As Range
    > Dim ActiveCellWidth As Single, PossNewRowHeight As Single
    > If ActiveCell.MergeCells Then
    > With ActiveCell.MergeArea
    > If .Rows.Count = 1 And .Cells(1).WrapText = True Then
    > Application.ScreenUpdating = False
    > CurrentRowHeight = .RowHeight
    > ActiveCellWidth = ActiveCell.ColumnWidth
    > For Each CurrCell In Selection
    > MergedCellRgWidth = CurrCell.ColumnWidth +
    > MergedCellRgWidth
    > Next
    > .MergeCells = False
    > .Cells(1).ColumnWidth = MergedCellRgWidth
    > .EntireRow.AutoFit
    > PossNewRowHeight = .RowHeight
    > .Cells(1).ColumnWidth = ActiveCellWidth
    > .MergeCells = True
    > .RowHeight = IIf(CurrentRowHeight > PossNewRowHeight, _
    > CurrentRowHeight, PossNewRowHeight)
    > End If
    > End With
    > End If
    > End Sub
    >
    >
    > --
    > Jim
    > "Sal" <sal@example.com> wrote in message
    > news:FB453D20-50D6-413E-A9D2-A38CECF685A3@microsoft.com...
    > | Hi Jim,
    > |
    > | ...and thanks. You were thinking the right question. And your answer is
    > | correct for all my rows except the ones with merged cells and they are
    > really
    > | the problem.
    > |
    > | I have a couple rows with merged cells that increase in content every once
    > | in a while and I would like the cell's ht to increase as well. Is it
    > possible
    > | that I'm destined to manually (yuch) adjust them each time?
    > |
    > | Oh please say it isn't so.
    > |
    > | Sal
    > | --
    > |
    > | "Jim Rech" wrote:
    > |
    > | > Let me answer the question I think you're asking..
    > | >
    > | > In a new worksheet all rows are set to 'auto-fit' their row heights.
    > That
    > | > means if you turn on word wrap or if you increase the font size of a
    > cell,
    > | > the row's height will automatically increase to accommodate it.
    > However, if
    > | > you manually set a row's height, it no longer will auto-fit. Excel
    > assumes
    > | > that when you manually set a row height it's because that is the height
    > you
    > | > want, so it maintains it.
    > | >
    > | > To get back to autofit use Format, Row, AutoFit. A shortcut is to
    > | > double-click the separator between the row numbers in the left border.
    > | >
    > | > --
    > | > Jim
    >
    >
    >


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1