CN107544814A - 一种利用Python实现两类多个Excel电子表格合并数据的方法 - Google Patents

一种利用Python实现两类多个Excel电子表格合并数据的方法 Download PDF

Info

Publication number
CN107544814A
CN107544814A CN201710836075.7A CN201710836075A CN107544814A CN 107544814 A CN107544814 A CN 107544814A CN 201710836075 A CN201710836075 A CN 201710836075A CN 107544814 A CN107544814 A CN 107544814A
Authority
CN
China
Prior art keywords
file
master
open
table0
filename
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN201710836075.7A
Other languages
English (en)
Inventor
陈兴雷
任金乐
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Individual
Original Assignee
Individual
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Individual filed Critical Individual
Priority to CN201710836075.7A priority Critical patent/CN107544814A/zh
Publication of CN107544814A publication Critical patent/CN107544814A/zh
Pending legal-status Critical Current

Links

Landscapes

  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

“一种利用Python实现两类多个Excel电子表格合并数据的方法”属于数据表应用领域的一项发明。在现实办公环境中,经常需要利用Excel电子表格分发、收集和汇总数据,特别是在汇总合并大量格式电子表格时,既费时费力,又容易出错。本发明即是利用Python解决这一现实中常见的大量Excel电子表格合并技术问题,以保证数据合并的准确性和时效性。在解决这一技术问题时,将数据合并类型区分为填表式合并和新增行式合并两类,利用Python编程设计两类数据合并工具方法,运行后即可得到相应合并后的数据。此发明主要用于填表式和新增行式两类Excel数据表的自动化汇总,减少人力劳动时间,提高工作效率。

Description

一种利用Python实现两类多个Excel电子表格合并数据的 方法
技术领域
本发明公开一种实现两类多个Excel电子表格合并数据的方法,属于数据表应用领域,具体而言是一种利用Python实现两种类型(一种为填表式合并,一种为新增行式合并)多个Excel电子表格数据的方法。
背景技术
Python是一种面向对象的解释型计算机程序设计语言,具有丰富和强大的站点包,可以轻易完成各种高级任务,至今已经成为一门易读、易维护,并且被大量用户所欢迎的、用途广泛的计算机程序设计语言。Microsoft Excel软件目前已经在日常生活和办公环境中取得了非常广泛的应用。在现实办公环境中,经常需要制作好格式表格,然后分发出去,由具体信息提供者按格式填写好后反馈,在收到反馈信息后,再逐一拷贝汇总反馈后的电子表格。这种汇总合并大量的电子表格时,既费时费力,又容易出错。为更好的解决这一现实问题,提高劳动效率,减少人力资源成本,本发明在具体分析合并电子表格的类型后,提供一种利用Python实现两类多个Excel电子表格合并数据的方法,简单易操作,可将填表式合并或新增行式合并两种类型的大量电子表格合并到一个Excel电子表格中,以保证数据合并的准确性和时效性,减轻工作量。
发明内容
本发明针对现有技术存在的不足和问题,对数据合并中的填表式合并和新增行式合并两种情形,提供一种利用Python实现这两类多个Excel电子表格合并数据的方法,提出的具体方案是:
在Windows XP或Win7系统中安装有Microsoft Excel2003或2007和Python2.7.2,并安装有xlrd1.1.0、xlwt1.3.0和xlutils2.0.0站点包(3个站点包下载解压后将其xlrd、xlwt和xlutils文件夹拷备至C:\Python27\Lib\site-packages目录下即可)的前提下,
(1) 将待合并的文件拷备至桌面目录下;
(2) 运行程序/Python2.7/IDLE(Python GUI),通过Ctr+N或File/New Window新建一Untitled代码窗口;
(3) 将Python程序代码拷备至此窗口中,按F5保存文件到桌面目录(与待合并文件同一目录)后直接运行,Python程序如下:
#!/usr/bin/env python
#coding=GBK
import os,sys,time,tkFileDialog,shutil,xlrd,xlwt,xlutils.copy
def fill_in(files_i,filename):
master_open=xlrd.open_workbook(filename)
open_master=xlutils.copy.copy(master_open)
master_table0=master_open.sheet_by_index(0)
master_sheet0=open_master.get_sheet(0)
master_nrows=master_table0.nrows
master_ncols=master_table0.ncols
for L in files_i:
file_i_open=xlrd.open_workbook(L)
open_file_i=xlutils.copy.copy(file_i_open)
file_i_table0=file_i_open.sheet_by_index(0)
file_i_sheet0=open_file_i.get_sheet(0)
i=0
j=0
for i in range(0,master_nrows):
for j in range(0,master_ncols):
master_cell_ij=master_table0.cell(i,j).value
file_i_cell_ij=file_i_table0.cell(i,j).value
if master_cell_ij!=file_i_cell_ij:
master_sheet0.write(i,j,file_i_cell_ij)
else:
pass
open_master.save(os.getcwd()+'\汇总结果_填表式合并汇总.xls')
print "*************************************************"
print "***"+L.split('\\')[-1]+">>>>完成汇总***"
print "***>>>请到当前目录中查看汇总结果_填表式合并汇总.xls文件"
def fill_incells(files_i,filename):
master_open=xlrd.open_workbook(filename)
open_master=xlutils.copy.copy(master_open)
master_table0=master_open.sheet_by_index(0)
master_sheet0=open_master.get_sheet(0)
master_nrows=master_table0.nrows#行数
master_ncols=master_table0.ncols#列数
Nrow_Sum=0
print "\n\n请注意,需要输入如下参量,输入大了会丢数据,输小了会出现原标题***"
flag=int(input("母文件标题行数有几行,如果是3行,则输入3:"))
for L in files_i:
file_i_open=xlrd.open_workbook(L)
open_file_i=xlutils.copy.copy(file_i_open)
file_i_table0=file_i_open.sheet_by_index(0)
file_i__nrows=file_i_table0.nrows#行数
file_i__ncols=file_i_table0.ncols#列数
file_i_sheet0=open_file_i.get_sheet(0)
i=0
j=0
Nrow_Sum=Nrow_Sum+flag
for i in range(flag,file_i__nrows):
for j in range(0,file_i__ncols):
cell_ij=file_i_table0.cell(i,j).value
master_sheet0.write(Nrow_Sum,j,cell_ij)
Nrow_Sum+=1
Nrow_Sum=Nrow_Sum-flag+1
print "*************************************************"
print "***"+L.split('\\')[-1]+">>>>完成汇总***"
open_master.save(os.getcwd()+'\汇总结果_行增式合并汇总.xls')
print "***>>>请到当前目录中查看汇总结果_行增式合并汇总.xls"
filename = tkFileDialog.askopenfilename(title=r"请选择母文件",initialdir=(os.getcwd()))
filename=filename.encode("GBK")#码转换windows编码为GBK
filenames = tkFileDialog.askopenfilenames(title=r"请选择子文件",initialdir=(os.getcwd()),initialfile='')
filenames=filenames.encode("GBK")#码转换windows编码为GBK
files_i=[]
filenames=filenames.split('} {')
for L in filenames:
L=L.strip('}')
L=L.strip('{')
files_i.append(L)
a=[]
a=filename.split('/')
filename=os.getcwd()+"/"+a[-1]
choice=input("\n***选择合并文件的方式,填表式合并输入1,还是行增式合并输入0:")
if int(choice)==1:
#填表式合并主要工具
fill_in(files_i,filename)
time.sleep(3)
else:
if int(choice)==0:
#行式合并主要工具
fill_incells(files_i,filename)
time.sleep(3)
else:
print '输入错误,请重新运行程序'
time.sleep(3)
time.sleep(1)
os.system("explorer.exe %s" % os.getcwd())
kill_command='taskkill /FI "WINDOWTITLE eq tk" /IM py* /T /F'
os.system(kill_command)
(4) 按提示对话框选择合并文件的母文件与子文件(多个子文件应一次性框选或按Ctr点选);
(5) 按合并文件的类型选择文件合并的方式,如果是填表式合并,输入1,则直接输出合并结果到当前目录中,完成合并;如果是行增式合并,输入0,再依提示输入行标题的行数后,如输入3,将同样直接输出合并结果到当前目录,完成合并。
本发明的有益之处
本发明的有益之处在于:本发明通过Python编程,实现将填表式合并和行增式合并两类多个数据表合并情形自动化汇总,减少了人力劳动时间,提高了工作效率。
具体实施方式
对本发明以具体实例进行说明:
一种利用Python实现两类多个Excel电子表格合并数据的方法,在Windows XP或Win7系统中安装有Microsoft Excel2003或2007和Python2.7.2,并安装有xlrd1.1.0、xlwt1.3.0和xlutils2.0.0站点包(3个站点包下载解压后将其xlrd、xlwt和xlutils文件夹拷备至C:\Python27\Lib\site-packages目录下即可)的前提下,具体步骤为:
一、填表式合并实例情况
(1)将需要填写的“课程开课任务书”作为填表式合并母文件(格式表格,需要按行列字段信息填写对应单元格信息)和由课程负责人填写的课程信息(对应格式留空处填写)反馈后作为填表式合并子文件,一同拷备至桌面目录下;
(2)运行程序/Python2.7/IDLE(Python GUI),通过Ctr+N或File/New Window新建一Untitled代码窗口;
(3)将Python程序代码拷备至此窗口中,按F5保存文件到桌面目录(与待合并文件同一目录)后直接运行,Python程序如下:
#!/usr/bin/env python
#coding=GBK
import os,sys,time,tkFileDialog,shutil,xlrd,xlwt,xlutils.copy
def fill_in(files_i,filename):
master_open=xlrd.open_workbook(filename)
open_master=xlutils.copy.copy(master_open)
master_table0=master_open.sheet_by_index(0)
master_sheet0=open_master.get_sheet(0)
master_nrows=master_table0.nrows
master_ncols=master_table0.ncols
for L in files_i:
file_i_open=xlrd.open_workbook(L)
open_file_i=xlutils.copy.copy(file_i_open)
file_i_table0=file_i_open.sheet_by_index(0)
file_i_sheet0=open_file_i.get_sheet(0)
i=0
j=0
for i in range(0,master_nrows):
for j in range(0,master_ncols):
master_cell_ij=master_table0.cell(i,j).value
file_i_cell_ij=file_i_table0.cell(i,j).value
if master_cell_ij!=file_i_cell_ij:
master_sheet0.write(i,j,file_i_cell_ij)
else:
pass
open_master.save(os.getcwd()+'\汇总结果_填表式合并汇总.xls')
print "*************************************************"
print "***"+L.split('\\')[-1]+">>>>完成汇总***"
print "***>>>请到当前目录中查看汇总结果_填表式合并汇总.xls文件"
def fill_incells(files_i,filename):
master_open=xlrd.open_workbook(filename)
open_master=xlutils.copy.copy(master_open)
master_table0=master_open.sheet_by_index(0)
master_sheet0=open_master.get_sheet(0)
master_nrows=master_table0.nrows#行数
master_ncols=master_table0.ncols#列数
Nrow_Sum=0
print "\n\n请注意,需要输入如下参量,输入大了会丢数据,输小了会出现原标题***"
flag=int(input("母文件标题行数有几行,如果是3行,则输入3:"))
for L in files_i:
file_i_open=xlrd.open_workbook(L)
open_file_i=xlutils.copy.copy(file_i_open)
file_i_table0=file_i_open.sheet_by_index(0)
file_i__nrows=file_i_table0.nrows#行数
file_i__ncols=file_i_table0.ncols#列数
file_i_sheet0=open_file_i.get_sheet(0)
i=0
j=0
Nrow_Sum=Nrow_Sum+flag
for i in range(flag,file_i__nrows):
for j in range(0,file_i__ncols):
cell_ij=file_i_table0.cell(i,j).value
master_sheet0.write(Nrow_Sum,j,cell_ij)
Nrow_Sum+=1
Nrow_Sum=Nrow_Sum-flag+1
print "*************************************************"
print "***"+L.split('\\')[-1]+">>>>完成汇总***"
open_master.save(os.getcwd()+'\汇总结果_行增式合并汇总.xls')
print "***>>>请到当前目录中查看汇总结果_行增式合并汇总.xls"
filename = tkFileDialog.askopenfilename(title=r"请选择母文件",initialdir=(os.getcwd()))
filename=filename.encode("GBK")#码转换windows编码为GBK
filenames = tkFileDialog.askopenfilenames(title=r"请选择子文件",initialdir=(os.getcwd()),initialfile='')
filenames=filenames.encode("GBK")#码转换windows编码为GBK
files_i=[]
filenames=filenames.split('} {')
for L in filenames:
L=L.strip('}')
L=L.strip('{')
files_i.append(L)
a=[]
a=filename.split('/')
filename=os.getcwd()+"/"+a[-1]
choice=input("\n***选择合并文件的方式,填表式合并输入1,还是行增式合并输入0:")
if int(choice)==1:
#填表式合并主要工具
fill_in(files_i,filename)
time.sleep(3)
else:
if int(choice)==0:
#行式合并主要工具
fill_incells(files_i,filename)
time.sleep(3)
else:
print '输入错误,请重新运行程序'
time.sleep(3)
time.sleep(1)
os.system("explorer.exe %s" % os.getcwd())
kill_command='taskkill /FI "WINDOWTITLE eq tk" /IM py* /T /F'
os.system(kill_command)
(4) 按提示对话框选择合并文件的母文件与子文件(多个子文件应一次性框选或按Ctr点选);
(5) 按合并文件的类型选择填表式合并,输入1,则直接生成“汇总结果_填表式合并汇总.xls”文件,并输出到当前目录中,完成合并;
二、行增式合并实例情况
(1)将需要填写的“科研项目统计表”作为行增式合并母文件(需要统计每位科研人员的姓名、年龄、专业和项目名称)和由每位科研人员填写的科研信息(科研人员一个项目填写一行记录)反馈后作为行增式合并子文件,一同拷备至桌面目录下;
(2)运行程序/Python2.7/IDLE(Python GUI),通过Ctr+N或File/New Window新建一Untitled代码窗口;
(3)将Python程序代码拷备至此窗口中,按F5保存文件到桌面目录(与待合并文件同一目录)后直接运行,Python程序如下:
#!/usr/bin/env python
#coding=GBK
import os,sys,time,tkFileDialog,shutil,xlrd,xlwt,xlutils.copy
def fill_in(files_i,filename):
master_open=xlrd.open_workbook(filename)
open_master=xlutils.copy.copy(master_open)
master_table0=master_open.sheet_by_index(0)
master_sheet0=open_master.get_sheet(0)
master_nrows=master_table0.nrows
master_ncols=master_table0.ncols
for L in files_i:
file_i_open=xlrd.open_workbook(L)
open_file_i=xlutils.copy.copy(file_i_open)
file_i_table0=file_i_open.sheet_by_index(0)
file_i_sheet0=open_file_i.get_sheet(0)
i=0
j=0
for i in range(0,master_nrows):
for j in range(0,master_ncols):
master_cell_ij=master_table0.cell(i,j).value
file_i_cell_ij=file_i_table0.cell(i,j).value
if master_cell_ij!=file_i_cell_ij:
master_sheet0.write(i,j,file_i_cell_ij)
else:
pass
open_master.save(os.getcwd()+'\汇总结果_填表式合并汇总.xls')
print "*************************************************"
print "***"+L.split('\\')[-1]+">>>>完成汇总***"
print "***>>>请到当前目录中查看汇总结果_填表式合并汇总.xls文件"
def fill_incells(files_i,filename):
master_open=xlrd.open_workbook(filename)
open_master=xlutils.copy.copy(master_open)
master_table0=master_open.sheet_by_index(0)
master_sheet0=open_master.get_sheet(0)
master_nrows=master_table0.nrows#行数
master_ncols=master_table0.ncols#列数
Nrow_Sum=0
print "\n\n请注意,需要输入如下参量,输入大了会丢数据,输小了会出现原标题***"
flag=int(input("母文件标题行数有几行,如果是3行,则输入3:"))
for L in files_i:
file_i_open=xlrd.open_workbook(L)
open_file_i=xlutils.copy.copy(file_i_open)
file_i_table0=file_i_open.sheet_by_index(0)
file_i__nrows=file_i_table0.nrows#行数
file_i__ncols=file_i_table0.ncols#列数
file_i_sheet0=open_file_i.get_sheet(0)
i=0
j=0
Nrow_Sum=Nrow_Sum+flag
for i in range(flag,file_i__nrows):
for j in range(0,file_i__ncols):
cell_ij=file_i_table0.cell(i,j).value
master_sheet0.write(Nrow_Sum,j,cell_ij)
Nrow_Sum+=1
Nrow_Sum=Nrow_Sum-flag+1
print "*************************************************"
print "***"+L.split('\\')[-1]+">>>>完成汇总***"
open_master.save(os.getcwd()+'\汇总结果_行增式合并汇总.xls')
print "***>>>请到当前目录中查看汇总结果_行增式合并汇总.xls"
filename = tkFileDialog.askopenfilename(title=r"请选择母文件",initialdir=(os.getcwd()))
filename=filename.encode("GBK")#码转换windows编码为GBK
filenames = tkFileDialog.askopenfilenames(title=r"请选择子文件",initialdir=(os.getcwd()),initialfile='')
filenames=filenames.encode("GBK")#码转换windows编码为GBK
files_i=[]
filenames=filenames.split('} {')
for L in filenames:
L=L.strip('}')
L=L.strip('{')
files_i.append(L)
a=[]
a=filename.split('/')
filename=os.getcwd()+"/"+a[-1]
choice=input("\n***选择合并文件的方式,填表式合并输入1,还是行增式合并输入0:")
if int(choice)==1:
#填表式合并主要工具
fill_in(files_i,filename)
time.sleep(3)
else:
if int(choice)==0:
#行式合并主要工具
fill_incells(files_i,filename)
time.sleep(3)
else:
print '输入错误,请重新运行程序'
time.sleep(3)
time.sleep(1)
os.system("explorer.exe %s" % os.getcwd())
kill_command='taskkill /FI "WINDOWTITLE eq tk" /IM py* /T /F'
os.system(kill_command)
(4) 按提示对话框选择合并文件的母文件与子文件(多个子文件应一次性框选或按Ctr点选);
(5) 按合并文件的类型选择行增式合并,输入0,再依提示输入行标题的行数,在本实例中,行标题共计3行,因此输入3,则直接生成“汇总结果_行增式合并汇总.xls”文件,并输出到当前目录中,完成合并。

Claims (1)

1.一种利用Python实现两类多个Excel电子表格合并数据的方法,在Windows XP或Win7系统中安装有Microsoft Excel2003或2007和Python2.7.2,并安装有xlrd1.1.0、xlwt1.3.0和xlutils2.0.0站点包(3个站点包下载解压后将其xlrd、xlwt和xlutils文件夹拷备至C:\Python27\Lib\site-packages目录下即可)的前提下,具体步骤为:
(1) 将待合并的文件拷备至桌面目录下;
(2) 运行程序/Python2.7/IDLE(Python GUI),通过Ctr+N或File/New Window新建一Untitled代码窗口;
(3) 将Python程序代码拷备至此窗口中,按F5保存文件到桌面目录(与待合并文件同一目录)并运行,Python程序如下:
#!/usr/bin/env python
#coding=GBK
import os,sys,time,tkFileDialog,shutil,xlrd,xlwt,xlutils.copy
def fill_in(files_i,filename):
master_open=xlrd.open_workbook(filename)
open_master=xlutils.copy.copy(master_open)
master_table0=master_open.sheet_by_index(0)
master_sheet0=open_master.get_sheet(0)
master_nrows=master_table0.nrows
master_ncols=master_table0.ncols
for L in files_i:
file_i_open=xlrd.open_workbook(L)
open_file_i=xlutils.copy.copy(file_i_open)
file_i_table0=file_i_open.sheet_by_index(0)
file_i_sheet0=open_file_i.get_sheet(0)
i=0
j=0
for i in range(0,master_nrows):
for j in range(0,master_ncols):
master_cell_ij=master_table0.cell(i,j).value
file_i_cell_ij=file_i_table0.cell(i,j).value
if master_cell_ij!=file_i_cell_ij:
master_sheet0.write(i,j,file_i_cell_ij)
else:
pass
open_master.save(os.getcwd()+'\汇总结果_填表式合并汇总.xls')
print "*************************************************"
print "***"+L.split('\\')[-1]+">>>>完成汇总***"
print "***>>>请到当前目录中查看汇总结果_填表式合并汇总.xls文件"
def fill_incells(files_i,filename):
master_open=xlrd.open_workbook(filename)
open_master=xlutils.copy.copy(master_open)
master_table0=master_open.sheet_by_index(0)
master_sheet0=open_master.get_sheet(0)
master_nrows=master_table0.nrows#行数
master_ncols=master_table0.ncols#列数
Nrow_Sum=0
print "\n\n请注意,需要输入如下参量,输入大了会丢数据,输小了会出现原标题***"
flag=int(input("母文件标题行数有几行,如果是3行,则输入3:"))
for L in files_i:
file_i_open=xlrd.open_workbook(L)
open_file_i=xlutils.copy.copy(file_i_open)
file_i_table0=file_i_open.sheet_by_index(0)
file_i__nrows=file_i_table0.nrows#行数
file_i__ncols=file_i_table0.ncols#列数
file_i_sheet0=open_file_i.get_sheet(0)
i=0
j=0
Nrow_Sum=Nrow_Sum+flag
for i in range(flag,file_i__nrows):
for j in range(0,file_i__ncols):
cell_ij=file_i_table0.cell(i,j).value
master_sheet0.write(Nrow_Sum,j,cell_ij)
Nrow_Sum+=1
Nrow_Sum=Nrow_Sum-flag+1
print "*************************************************"
print "***"+L.split('\\')[-1]+">>>>完成汇总***"
open_master.save(os.getcwd()+'\汇总结果_行增式合并汇总.xls')
print "***>>>请到当前目录中查看汇总结果_行增式合并汇总.xls"
filename = tkFileDialog.askopenfilename(title=r"请选择母文件",initialdir=(os.getcwd()))
filename=filename.encode("GBK")#码转换windows编码为GBK
filenames = tkFileDialog.askopenfilenames(title=r"请选择子文件",initialdir=(os.getcwd()),initialfile='')
filenames=filenames.encode("GBK")#码转换windows编码为GBK
files_i=[]
filenames=filenames.split('} {')
for L in filenames:
L=L.strip('}')
L=L.strip('{')
files_i.append(L)
a=[]
a=filename.split('/')
filename=os.getcwd()+"/"+a[-1]
choice=input("\n***选择合并文件的方式,填表式合并输入1,还是行增式合并输入0:")
if int(choice)==1:
#填表式合并主要工具
fill_in(files_i,filename)
time.sleep(3)
else:
if int(choice)==0:
#行式合并主要工具
fill_incells(files_i,filename)
time.sleep(3)
else:
print '输入错误,请重新运行程序'
time.sleep(3)
time.sleep(1)
os.system("explorer.exe %s" % os.getcwd())
kill_command='taskkill /FI "WINDOWTITLE eq tk" /IM py* /T /F'
os.system(kill_command)
(4) 按提示对话框选择合并文件的母文件与子文件(多个子文件应一次性框选或按Ctr点选);
(5) 按合并文件的类型选择文件合并的方式,如果是填表式合并,输入1,则直接输出合并结果到当前目录中,完成合并;如果是行增式合并,输入0,再依提示输入行标题的行数后,如输入3,将同样直接输出合并结果到当前目录,完成合并。
CN201710836075.7A 2017-09-16 2017-09-16 一种利用Python实现两类多个Excel电子表格合并数据的方法 Pending CN107544814A (zh)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201710836075.7A CN107544814A (zh) 2017-09-16 2017-09-16 一种利用Python实现两类多个Excel电子表格合并数据的方法

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201710836075.7A CN107544814A (zh) 2017-09-16 2017-09-16 一种利用Python实现两类多个Excel电子表格合并数据的方法

Publications (1)

Publication Number Publication Date
CN107544814A true CN107544814A (zh) 2018-01-05

Family

ID=60963760

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201710836075.7A Pending CN107544814A (zh) 2017-09-16 2017-09-16 一种利用Python实现两类多个Excel电子表格合并数据的方法

Country Status (1)

Country Link
CN (1) CN107544814A (zh)

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109325221A (zh) * 2018-09-27 2019-02-12 郑州云海信息技术有限公司 表格文件的合并方法和装置
CN109491703A (zh) * 2018-11-07 2019-03-19 网易(杭州)网络有限公司 表格合并的方法、装置、存储介质及电子装置
CN112861493A (zh) * 2021-02-03 2021-05-28 河南开祥精细化工有限公司 一种数据分析汇总方法、装置、设备和存储介质
CN113721900A (zh) * 2021-09-06 2021-11-30 安徽工程大学 一种基于Python的钻孔灌注桩检验批快速生成方法

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1936882A (zh) * 2006-10-13 2007-03-28 北京北大方正电子有限公司 一种分页表格的数据处理方法及系统
CN106776843A (zh) * 2016-11-28 2017-05-31 浪潮软件集团有限公司 一种基于xml解析的导入excel文件的方法

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1936882A (zh) * 2006-10-13 2007-03-28 北京北大方正电子有限公司 一种分页表格的数据处理方法及系统
CN106776843A (zh) * 2016-11-28 2017-05-31 浪潮软件集团有限公司 一种基于xml解析的导入excel文件的方法

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109325221A (zh) * 2018-09-27 2019-02-12 郑州云海信息技术有限公司 表格文件的合并方法和装置
CN109491703A (zh) * 2018-11-07 2019-03-19 网易(杭州)网络有限公司 表格合并的方法、装置、存储介质及电子装置
CN112861493A (zh) * 2021-02-03 2021-05-28 河南开祥精细化工有限公司 一种数据分析汇总方法、装置、设备和存储介质
CN113721900A (zh) * 2021-09-06 2021-11-30 安徽工程大学 一种基于Python的钻孔灌注桩检验批快速生成方法
CN113721900B (zh) * 2021-09-06 2023-08-08 安徽工程大学 一种基于Python的钻孔灌注桩检验批快速生成方法

Similar Documents

Publication Publication Date Title
CN107544814A (zh) 一种利用Python实现两类多个Excel电子表格合并数据的方法
CN104077665B (zh) 电网工程造价分析数据收集系统及方法
AU776139B2 (en) Spreadsheet cell-data source binding
CN101706716B (zh) 基于vo的表单定制配置与解析运行方法
CN105868019A (zh) 一种Spark平台性能自动优化方法
CN109558575A (zh) 在线表格编辑方法、装置、计算机设备及存储介质
Estrada Qualitative analysis using R: A free analytic tool
CN109669933A (zh) 交易数据智能处理方法、装置及计算机可读存储介质
CN103885925A (zh) 一种xbrl实例文档的封装方法
CN106528896A (zh) 一种数据库优化方法和装置
CN109445771A (zh) 一种cs架构下网络层模块代码自动生成工具及方法
CN112650966A (zh) 在线设计的动态列表页面生成方法、生成器及介质
CN105302917A (zh) 应用于电子商务平台的数据处理系统及数据处理方法
CN112214453A (zh) 大规模工业数据压缩存储方法、系统及介质
Asuncion Automated data provenance capture in spreadsheets, with case studies
CN104346378B (zh) 一种实现复杂数据处理的方法、装置及系统
CN110660461B (zh) 一种基于人工智能的跨平台医疗数据信息上传系统
CN108182236A (zh) 一种统一配置数据源的web页面下拉列表实现方法
US20070073765A1 (en) Metadata-based schema generator
CN107247804B (zh) 运维大数据分析方法、装置及系统
CN113535758B (zh) 一种把传统数据库脚本批量转换上云的大数据系统和方法
Curdt Design and implementation of a research data management system: The crc/tr32 project database (tr32db)
CN103186551B (zh) 基于web应用平台的异常分析方法及仿真系统
CN107122299A (zh) 一种自动化软件代码检测方法
CN112711404A (zh) 一次生成专题网页模板、自动发布专题网页的方法

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
WD01 Invention patent application deemed withdrawn after publication
WD01 Invention patent application deemed withdrawn after publication

Application publication date: 20180105