问题描述
我有两个桌子
客户表字段是(客户编号,名字,姓氏)和订单表字段是(订单编号,项目,客户编号)这两个表在两个不同的excel工作簿中.
我想在".Net"中开发一个独立的应用程序.如何使用自定义编号从两个Excel工作表中读取数据并显示在单个表中的数据中?
客户无姓氏
101哈里·基山
102 kiran kumar
订单号项目客户编号
1001 Rin 101
1002 lux 101
1003 Rin 102
显示
客户没有名字姓氏没有订单
101 hari kirshna 1001 in
101 hari kirshna 1002 lux
I have two tables
Customer table fields are (Customer no , first name, last name) and Order table fields are (Order no, item, customer no) these two tables in two different excel work books.
I want to develop one standalone application in ".Net". How can I read the data from two excel sheet and display in data in single table using custom no?
Customer nofirst namelastname
101harikirshan
102kiran kumar
Order noitemcustomer no
1001Rin101
1002lux101
1003Rin102
To display
Customer Nofirst namelastnameorder noitem
101harikirshna1001Rin
101hari kirshna1002lux
推荐答案
这篇关于从两张Excel工作簿中读取数据,并以Windows窗体在gridview中显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!