如何将两个单独的 Excel 文件导入到同一个数据网格视图中

发布于 2024-12-12 05:28:05 字数 528 浏览 0 评论 0原文

我正在 Vb.net 中使用数据网格视图,并希望将两个 Excel 文件加载到其中。 我的两个 Excel 文件如下所示:

file1:

id |first name|姓氏

3 |丹 |柯克

1 |猫王 |普雷斯利

4 |约翰 |马尔科维奇

file2:

ssn |性别 | 123岁

|男| 39

345 | 39 345男| 55

523 | 55 523男| 23

我要解决的问题如下: 我想将文件 2 中的数据集的值映射到文件 1 中的排序数据集。例如,如果我想按 id# 降序对所有数据进行排序,则(使用上面的示例)datagrid 中的数据view1 和 datagridview2 应该颠倒过来。

现在,如果我对 datagrid 视图中的 file1 中的列进行排序,则此 datagridview1 中的所有其他列也都相对于 column2 进行排序。我想要的是 file2 中的列也将根据 file1 进行排序。

I am using data grid view in Vb.net and would like to load two excel files into it.
My two excel files look like this:

file1:

id |first name| last name

3 | dan | kirk

1 | elvis | presley

4 | john | Malcovich

file2:

ssn | sex | age

123 | male| 39

345 | male| 55

523 | male| 23

The problem I want to solve is the following:
I would like to map the values from the data set in file 2 to the sorted data set from file 1. So for example If I want to sort all the data by id# descending then (using the example from above) the data in datagrid view1 and in datagridview2 should be reversed.

Right now if I sort the column from file1 in datagrid view all the other columns in THIS datagridview1 are also sorted in relation to column2. What I want is that the columns in file2 will also sort according to file1.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

滴情不沾 2024-12-19 05:28:05

我不明白这两个文件如何相互关联。尝试使用 id 将另一列添加到 file2 中。然后你可以将它们相互联系起来。对一个文件进行排序,然后根据其他 id 顺序对另一个文件进行排序。

文件2:

ssn |性别 |年龄 |编号

123 |男| 39 | 39 3

345 | 3 345男| 55 | 55 1

523 |男| 23 | 23 4

I don't see how the 2 files relate to each other. Try adding another column to file2 with the id. Then you can relate them to each other. Sort one file, then sort the other according to other id order.

file2:

ssn | sex | age | id

123 | male| 39 | 3

345 | male| 55 | 1

523 | male| 23 | 4

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文