• how can i lock the width of a column

    Author
    Topic
    #468945

    in excel 2007 how can i lock the width of a column? maually? and using code

    many thanks

    diana

    Viewing 2 reply threads
    Author
    Replies
    • #1224103

      in excel 2007 how can i lock the width of a column? maually? and using code

      many thanks

      diana

      Protecting the sheet will prevent users from changing the width, but it may be more than you need.

    • #1224131

      You could add workbook macros:

      Code:
      ' examples checking for minimum size for column A
      
      
      Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
      If Columns("a:A").ColumnWidth < 12 Then Columns("a:A").ColumnWidth = 12 
      MsgBox ("before save")
      End Sub
      
      Private Sub Workbook_Open()
      If Columns("a:A").ColumnWidth < 12 Then Columns("a:A").ColumnWidth = 12 
      MsgBox (" On Open ")
      End Sub
      
      
      Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
      If Columns("a:A").ColumnWidth < 12 Then Columns("a:A").ColumnWidth = 12 
      End Sub
      
    • #1224185

      ill test out both your suggestions.

      many thanks

      diana

    Viewing 2 reply threads
    Reply To: how can i lock the width of a column

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: