This isn't actually a question -- it's more of an FYI. It took me a while to figure this out, since my searching with Google turned up bits and pieces (including some related questions here on StackOverflow), but no article or blurb gave me the whole answer all in one place. I was finally able to figure it out by recording a macro in Excel and looking at its source code and combining what I found there with what I found on the web.

Anyway, the following code snippets show two helper functions, plus a sample main() type of function (which I always use, even in Perl and Python apps, since I have a C/C++/Java background).

The first helper method will auto-fit every used column on the given sheet. Since the auto-fit logic depends on the data in the cells, as well as the font(s) in use, you shouldn't call this method until the entire sheet has been completely populated with your data. Also, I'm pretty new to VBA, so I'm not so sure that this line:

        sheet.Cells(1, i).EntireColumn.AutoFit()

is correct, but it does seem to work just fine. If it's not entirely correct, maybe you can post a correction.

def autoFitSheet(sheet):
    """Auto-fits all the used columns on the given sheet.  Obviously, this
    method should only be called _after_ the sheet has been populated."""

    firstCol    = sheet.UsedRange.Column
    numCols     = sheet.UsedRange.Columns.Count

    for i in range(firstCol, (firstCol + numCols)):
        sheet.Cells(1, i).EntireColumn.AutoFit()

The second helper is a "freeze the top line" method. All it does is freeze the top line of the sheet that you pass it. A side effect of this method is that the sheet becomes the active sheet in the spreadsheet, so you might need/want to activate some other sheet once all your sheets' top lines have been frozen.

def freezeTopLine(window, sheet):
    """Freezes the top line of the given sheet."""

    sheet.Activate()

    window.SplitColumn  = 0
    window.SplitRow     = 1
    window.FreezePanes  = True

The last snippet is a sample main() function, which just shows how to call the two helper methods. I'm actually using code very similar to this to populate a spreadsheet with mutliple tabs/sheets, and it works perfectly (on Windows 7 -- can't guarantee how well it will work on your system).

def main(...):
    #
    # (whatever...)
    #

    excel       = win32.gencache.EnsureDispatch('Excel.Application')
    workbook    = excel.Workbooks.Add()
    sheets      = workbook.Sheets
    window      = workbook.Windows(1)

    sheet1 = workbook.Worksheets('Sheet1')
    straddles.Name = 'My First Sheet'
    straddles.Tab.ColorIndex = 6 # yellow

    sheet2 = workbook.Worksheets('Sheet2')
    cashSummary.Name = 'Some Other Sheet'
    cashSummary.Tab.ColorIndex = 4 # bright green

    #
    # Populate sheets...
    #

    for sheet in sheets:
        autoFitSheet(sheet)
        freezeTopLine(sheet)

    #
    # (whatever...)
    #

Like I said, it took me a while to figure this out, and I was hoping that maybe I could save someone some of the headache that I went through. Good luck.

link|improve this question
+1 for sharing. But there was an easy way to figure this out. Record a macro in excel where you perform the task you want to automate. Look at the generated code to see the api. – Steven Rumbalski Sep 21 '11 at 18:12
Autofit is easier than you make it: mysheet.Columns.AutoFit. – Steven Rumbalski Sep 21 '11 at 18:20
If you want to Autofit columns 1 through 5 and xl is your Application object do xl.Range(xl.Columns(1),xl.Columns(5)).AutoFit(). – Steven Rumbalski Sep 21 '11 at 18:30
Hi, Steven. Thanks for the feedback. I've been a programmer for nearly 30 years, but I'm still fairly new to Python, and extremely new to VBA (never done it before now). Anyway, re: the mysheet.Columns.AutoFit suggestion: Doesn't that simply reference the AutoFit member of the Columns object? I tried it in my code, and it didn't do anything. I also tried it with () at the end (making it a function call), and still it had no effect. What am I missing here? Keep in mind that this isn't straight VBA, it's Python... – Tom Trop Sep 21 '11 at 18:45
Yes, I should have written it with parenthesis (mysheet.Columns.AutoFit()), but other than that it works. I just retried xl.ActiveSheet.Columns.AutoFit() at the Python interactive prompt and got the Columns to autofit. – Steven Rumbalski Sep 21 '11 at 18:50
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.