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 4051966
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T14:15:38+00:00 2026-05-20T14:15:38+00:00

I suspect there is an easy answer for this question but I can’t find

  • 0

I suspect there is an easy answer for this question but I can’t find it anywhere! I am writing a function to plot a lot of data in excel and I am controlling the plotting with Python. I have generated all of the charts and each chart is its own sheet, but they are out of order. The VBA code for this is:

Sheets("Chart1").Move After:=Sheets(3)

This will take “Chart1” and move it after the 3rd sheet. How do I do this in Python? I know that the code is something along the lines of:

xlChart.Move(Before,After)

How do I tell python the Before and After parameters? I guess the big thing is I haven’t figured out how to pass parameters in win32com programming.

Thanks in advance for any help!

  • 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-20T14:15:39+00:00Added an answer on May 20, 2026 at 2:15 pm

    Here’s a very simple example:

    from win32com import client
    
    excel=client.Dispatch("Excel.Application")
    excel.Visible=True
    book=excel.Workbooks.Open("c:/desktop/test.xlsx", False, True)
    sheet=book.Worksheets(1)
    chart=book.Charts.Add()
    chart.SetSourceData(sheet.Range("$A:$B"))
    
    chart.Move(Before=book.Worksheets("Sheet2"))
    chart.Move(book.Worksheets("Sheet2"))#equivalent to previous line
    chart.Move(book.Worksheets("Sheet2"), None)#also equivalent
    
    chart.Move(After=book.Worksheets("Sheet2"))
    chart.Move(None,book.Worksheets("Sheet2"))#equivalent to previous line
    

    I’ve tried to show the various options for dealing with optional parameters which are important issues with Excel COM programming. You can use positional parameter passing and omit parameters from the end. Or you can pass None which is equivalent. Finally, you can used named parameters.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just as in title. Is suspect it is, but I couldn't find it anywhere
I've notice an issue - it feels like a bug but I suspect a
I'm having a lot of issues with NSDate objects being prematurely deallocated. I suspect
I'm trying to get this piece of code working a little better. I suspect
I've got no experience with this, so i suspect my logic is overly complicated,
Is there a simple way (i.e. without writing a script or elaborate keymap sequence)
I suspect that one of my applications eats more CPU cycles than I want
I'm trying to build a very, very simple micro-webapp which I suspect will be
Stackoverflow is built on MVC and does a bunch of simple but nice things
So I am writing a simple Rock, Paper, Scissors game in C (it's for

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.