Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a list in Column A that, when I choose an item, I automatically update
information in Column B. I have selected autofit, but when Col B is updated is wont autofit. If I select the same item from Col A again then it will. Not good for the users! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
A formula that changes won't make the size of the column change.
Maybe you could have an event macro that runs each times that worksheet recalculates. If you want to try that event macro, you can rightclick on the worksheet tab that should have this behavior. Select view code and paste this in: Option Explicit Private Sub Worksheet_Calculate() Me.Columns.AutoFit End Sub SummerGuy wrote: I have a list in Column A that, when I choose an item, I automatically update information in Column B. I have selected autofit, but when Col B is updated is wont autofit. If I select the same item from Col A again then it will. Not good for the users! -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Dave,
Excellent, I just changes the Columns to Rows for my needs. Thanks so much. Jim "Dave Peterson" wrote: A formula that changes won't make the size of the column change. Maybe you could have an event macro that runs each times that worksheet recalculates. If you want to try that event macro, you can rightclick on the worksheet tab that should have this behavior. Select view code and paste this in: Option Explicit Private Sub Worksheet_Calculate() Me.Columns.AutoFit End Sub SummerGuy wrote: I have a list in Column A that, when I choose an item, I automatically update information in Column B. I have selected autofit, but when Col B is updated is wont autofit. If I select the same item from Col A again then it will. Not good for the users! -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Autofit and word wrap don't work? | Excel Discussion (Misc queries) | |||
Autofit doesn't work | Excel Discussion (Misc queries) | |||
The Row Height Autofit command does not work. | Excel Worksheet Functions | |||
Autofit doesn't work with merged cells | Excel Discussion (Misc queries) | |||
Run macros automatically-AutoFit | Excel Discussion (Misc queries) |