溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Python 如何讀取有公式cell的結(jié)果內(nèi)容

發(fā)布時(shí)間:2020-02-26 01:05:54 來源:網(wǎng)絡(luò) 閱讀:336 作者:paeser 欄目:編程語言
    操作Excel通常是用如下三個(gè)擴(kuò)展體:

import xlrd
import xlwt
import openpyxl

    xlrd(讀) 和 xlwt(寫)是一對(duì)。openpyxl獨(dú)立,即可讀也可寫。
    正常讀都沒有問題,只是讀有公式的cell時(shí),會(huì)出現(xiàn)如題癥狀。對(duì)此,xlrd似乎沒答案,而openpyxl開出的方子如下:

wb1 = openpyxl.load_workbook(xlsxFileWithFullPath, data_only=True)

就是加上 “data_only=True” 這個(gè)參數(shù)。
xlsxFileWithFullPath ---要操作的文件。
加上以后你會(huì)發(fā)現(xiàn),還是依然如故,或者是時(shí)可時(shí)否!

如把文件打開,再保存一遍,執(zhí)行程序,第一遍可以,第二遍就不行了!

其實(shí), 關(guān)于 data_only=True 這個(gè)參數(shù)有個(gè)重要說明:

# data_only (bool) – controls whether cells with formula have either the formula (default) or the value stored the last time Excel read the sheet

這就解釋了上述時(shí)可時(shí)否的問題。

這樣解決問題的辦法就有了:用程序來完成那個(gè)保存文件的任務(wù)即可!

(1)。。。
def ReadLine(self, tip1, tip2, movingRC, fixedRC, RorC, totalCells, sheetName, xlsxFileWithFullPath):

[!!]just open and save the file once! why? see bellow!

xlsxDealer.`JustOpenAndSaveTheFile`(xlsxFileWithFullPath)

(2)。。。

def JustOpenAndSaveTheFile(self, file_name):
from win32com.client import Dispatch
xlApp = Dispatch("Excel.Application")
xlApp.Visible = False
xlBook = xlApp.Workbooks.Open(file_name)
xlBook.Save()
xlBook.Close()

問題是解決了,速度就是有點(diǎn)慢!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI