Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
one way would be to put the if statement below into some worksheet event
such as calculate or change. Then when the column width is modified it will revert to 20. If you want it to fire all the time just use Columns(4).ColumnWidth = 20 ========== To add right click sheet tabview codeleft window worksheetright window select eventput in code Private Sub Worksheet_Calculate() If Columns(4).ColumnWidth < 20 Then Columns(4).ColumnWidth = 20 End Sub Private Sub Worksheet_Change(ByVal Target As Range) If Columns(4).ColumnWidth < 20 Then Columns(4).ColumnWidth = 20 End Sub -- Don Guillett SalesAid Software "Kazuki" wrote in message ... I have an excel sheet wherein I collect data from about 10 persons. To maintain formattin all over the huge excel sheet, I would like to freeze the column width. Other should not be able to change the column width even if they try. What should I do? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Column Width | Excel Discussion (Misc queries) | |||
Changed column width keeps reverting back to original size | Excel Discussion (Misc queries) | |||
Return Count for LAST NonBlank Cell in each Row | Excel Worksheet Functions | |||
Is it possible to create one column with two different width? | Excel Worksheet Functions | |||
Change the width of a single column in a column chart | Charts and Charting in Excel |