douqin6785 2014-05-10 18:41
浏览 607
已采纳

如何更新Excel数据? (刷新所有查询)

I have a Excel xlsm file with a few queries.

Currently I open it every day and click on the "Refresh All" command in the "Data" tab. I want this to be done automatically. I wrote a script in python (I'm a newbie in Python).

The problem is that after the data is refreshed and the Excel file has been saved, the refreshed data is not visible (I know that refreshing works because if I prevent to save and close the Excel file, the refreshed data is visible in the file )

The weird thing is that saving also works fine because when I try to modify cell B2 from 'config' it is changed...

Where is the problem?

import win32com.client
import datetime
from datetime import date, timedelta

yesterday = date.today() - timedelta(1)

office = win32com.client.Dispatch("Excel.Application")
wb = office.Workbooks.Open(r'\\server\CC_source.xlsm')

office.DisplayAlerts = True
office.Visible = True
wb.RefreshAll()

sh = wb.Worksheets("config")
sh.Cells(2,2).Value = wczoraj

wb.Close(True)

Maybe someone can recommend another script? For example, Powershell? PHP? Or an other library for Python3?

  • 写回答

1条回答 默认 最新

  • dongshushen4392 2014-05-11 19:39
    关注

    Since you requested another script to perform this action, I recommend PowerShell. As a simple test, I created an Excel document, SheetToRefresh.xlsx, which has a data connection to a simple xml file. However, the script below will work for any data source that the Excel document is connected to. I have tested this on my own machine, the data refresh and save persists, as expected.

    RefreshExcel.ps1

    #Set the file path (can be a network location)
    $filePath = "C:\Scripts\SheetToRefresh.xlsx"
    
    #Create the Excel Object
    $excelObj = New-Object -ComObject Excel.Application
    
    #Make Excel visible. Set to $false if you want this done in the background
    $excelObj.Visible = $true
    
    #Open the workbook
    $workBook = $excelObj.Workbooks.Open($filePath)
    
    #Focus on the top row of the "Data" worksheet
    #Note: This is only for visibility, it does not affect the data refresh
    $workSheet = $workBook.Sheets.Item("Data")
    $workSheet.Select()
    
    #Refresh all data in this workbook
    $workBook.RefreshAll()
    
    #Save any changes done by the refresh
    $workBook.Save()
    
    #Uncomment this line if you want Excel to close on its own
    #$excelObj.Quit()
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 微带串馈天线阵列每个阵元宽度计算
  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥30 BC260Y用MQTT向阿里云发布主题消息一直错误
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM
  • ¥15 划分vlan后不通了
  • ¥20 用雷电模拟器安装百达屋apk一直闪退