消失的Excel公式

时间:2019-03-23 14:17:24

标签: python excel pandas openpyxl

我是python的新手。我想用python处理excel数据。我在下面做了代码。该代码在我第一次启动时起作用。它会检测excel文件中存在的所有数据,甚至是公式。 问题是它第二次不起作用。这意味着缺少一列数据。这是有公式的列。我希望我的代码一直工作。 我注意到它第二次运行所有代码时不再检测公式。我的代码将公式解释为“ NaN”,读取数据时,我要求不显示“ NaN”。这就是为什么什么都没有的原因。 第二句话是:如果我是第一次启动代码后保存了excel文件,则我的代码可以再次工作。 我希望我的代码一直工作。 我的代码:

import pandas as pd
import numpy as np
import xlsxwriter
from openpyxl import load_workbook
from pandas import ExcelWriter
from pandas import ExcelFile

data=pd.read_excel("site.xlsx","Feuille1", keep_default_na=False, skiprows = [0,1],usecols=[1,2,3,4]) 
print(data)

totalballon=[]
b=[]
espece=np.where(data['Unnamed: 1']=='TOTAL Espèces')[0]
carte=np.where(data['Unnamed: 1']=='TOTAL CB')[0]
cheque=np.where(data['Unnamed: 1']=='TOTAL Chèque')[0]

articles=["Ballon bleu", "CH24 jaune", "Ballon rouge", "Chapeau", "Ballon vert", "Pantalon", "Fleurs"]

print(np.sum(data['Unnamed: 3'][espece]))
print(np.sum(data['Unnamed: 3'][carte]))
print(np.sum(data['Unnamed: 3'][cheque]))


for i in articles:
    nb=np.where(data['Unnamed: 1']==i)[0]
    b.append(np.sum(data['Unnamed: 0'][nb]))
print(b)

ballon=["Ballon bleu", "Ballon rouge", "Ballon vert"]

for j in ballon:
    nb=np.where(data['Unnamed: 1']==j)[0]
    totalballon.append(np.sum(data['Unnamed: 0'][nb]))
totalballon=[sum(totalballon)]
print(totalballon)

with pd.ExcelWriter('site.xlsx', engine='openpyxl') as writer:
    writer.book = load_workbook('site.xlsx')


    TOTALespece = np.sum(data['Unnamed: 3'][espece])
    TOTALcarte = np.sum(data['Unnamed: 3'][carte])
    TOTALcheque = np.sum(data['Unnamed: 3'][cheque])

    df1 = pd.DataFrame({'articles':articles})
    df2 = pd.DataFrame({'nombres':b})
    df3 = pd.DataFrame({'Total ballon':totalballon})

    dfe = pd.DataFrame({'TOTAL Espèces':[TOTALespece]})
    dfcarte = pd.DataFrame({'TOTAL CB':[TOTALcarte]})
    dfcheque = pd.DataFrame({'TOTAL Chèque':[TOTALcheque]})

    df1.to_excel(writer, "Feuille2", index=False)
    df2.to_excel(writer, "Feuille2", index=False, startcol=1)
    df3.to_excel(writer, "Feuille2", index=False, startcol=2)
    dfe.to_excel(writer, "Feuille2", index=False, startcol=3)
    dfcarte.to_excel(writer, "Feuille2", index=False, startcol=4)
    dfcheque.to_excel(writer, "Feuille2", index=False, startcol=5)
    writer.book.save('site.xlsx')
    writer.book.close()

Print(data) first time

Print(data) second time after launching the code

不再显示未修饰的第3列。在此列中有所有excel公式。 My github with the excel file and the python code

0 个答案:

没有答案