Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7504339
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T21:32:31+00:00 2026-05-29T21:32:31+00:00

I am trying to do AutoFit cells in the range A2 to AA2. Below

  • 0

I am trying to do AutoFit cells in the range A2 to AA2.

Below is the code I am trying:

Application.ScreenUpdating = False
Dim wkSt As String
Dim wkBk As Worksheet
wkSt = ActiveSheet.Name
For Each wkBk In ActiveWorkbook.Worksheets
    On Error Resume Next
    wkBk.Activate
    Cells.Range("A2:AA2").EntireColumn.AutoFit
Next wkBk
Sheets(wkSt).Select
Application.ScreenUpdating = True

Below is some sample Excel data, as displayed on the screen:

     A            B           C
1    Jhon is the best employee
2    Emp_Name     Emp_id      Empsal.

Note that “Jhon is the best employee” is all in one cell (A1) but when displayed its contents overlap cells B1 and C1.

With the above code, the data is then displayed as follows:

     A                               B       C
1    Jhon is the best employee
2    Emp_Name                        Emp_id  Empsal

How can I do AutoFit on each cell of the second row in each worksheet? Above code failing to autofit data from my second row.

This is what I want the display to look like:

     A        B      C
1    Jhon is the best employee
2    Emp_Name Emp_id Empsal.

i.e. the columns should fit snuggly around “Emp_Name”, “Emp_id” and “Empsal.” — not around “Jhon is the best employee”.

EDIT Also, if there are data in the following rows (3, 4, etc.) then these should be included in the Autofit as well. For example, data should display like below:

     A          B      C
1    Jhon is the best employee
2    Emp_Name   Emp_id Empsal.
3    Jhon Peter 2      2000
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T21:32:33+00:00Added an answer on May 29, 2026 at 9:32 pm

    If what you want is to force Autofit to ignore the first row and only Autofit based on the content of rows 2 and greater. I don’t think this is possible.
    One way to do it would be to store the content of the first row, delete it, autofit and insert the content of the first row back:

    Public Sub test()
    
      Dim wkSt As String
      Dim wkBk As Worksheet
      Dim temp As Variant
    
      wkSt = ActiveSheet.Name
      For Each wkBk In ActiveWorkbook.Worksheets
          On Error Resume Next
          wkBk.Activate
          temp = wkBk.Rows(1)
          wkBk.Rows(1).ClearContents
          wkBk.Columns("A:AA").AutoFit
          wkBk.Rows(1) = temp
      Next wkBk
      Sheets(wkSt).Select
    
    End Sub
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Trying to make a MySQL-based application support MS SQL, I ran into the following
Trying to create a QtRuby application, I get the following error: /usr/lib64/ruby/site_ruby/1.8/Qt/qtruby4.rb:2144: [BUG] Segmentation
Trying to honor a feature request from our customers, I'd like that my application,
Trying to do this, but is it wrong? Below is my style and script
Trying to deploy application using ClickOnce to a webserver running sharepoint. I can publish
Trying to launch and pass tel. no. to skype by this code from my
Trying to set RowHeight like this(in code): dgvTruckAvail.RowTemplate.Height = 48; Doesnt' work. I also
Trying to setup an SSH server on Windows Server 2003. What are some good
Trying to get my css / C# functions to look like this: body {
Trying to find some simple SQL Server PIVOT examples. Most of the examples that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.