本文介绍了如何使用MVC以任何格式(如数字,文本)选择Excel工作表单元格值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的excel表有四列。在第一列中,单元格包含数字和文本。

使用以下查询获取特定工作表的值(excelSheets [0]具有我的工作表名称)



my excel sheet having four columns. in that first column cells are contains numbers and text.
using the below query to get the values of the particular sheet (excelSheets[0] is having my sheet name)

 OleDbDataAdapter da = new OleDbDataAdapter("select * from [" + excelSheets[0] + "$" + "]", connection);
DataSet main_ds = new DataSet();
da.Fill(main_ds);





最后,该数据集仅包含数字值,单元格包含文本(abc,def不来了。





这样的表格





Finally that dataset having only the number values and cells having text (abc,def is not coming).


sheet like this

column1
abc
610
764
765
def
123
897
568

推荐答案





最后那个只有数值的数据集和有文本的单元格(abc,def不会来)。





这样的页面





Finally that dataset having only the number values and cells having text (abc,def is not coming).


sheet like this

column1
abc
610
764
765
def
123
897
568


这篇关于如何使用MVC以任何格式(如数字,文本)选择Excel工作表单元格值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 11:57