本文介绍了Usedrange在excel列中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何从UsedRange获取一列;例如列A?
How do you get a column from the UsedRange; for example column A?
xlApp = new Excel.Application();
xlWorkBook = xlApp.Workbooks.Open("C:\\base.xls", 0, true, 5, "", "", true, Microsoft.Office.Interop.Excel.XlPlatform.xlWindows, "\t", false, false, 0, true, 1, 0);
xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1);
//range = xlWorkSheet.UsedRange;
range = xlWorkSheet.get_Range("A") // reading from A1 to max of excel 65536?
推荐答案
这将得到你的列A, out可能是UsedRange中的第一列:
This will get you Column A, which as Joe points out might be the first column in your UsedRange:
range = xlWorkSheet.UsedRange.Columns["A:A", Type.Missing]
这将让您获得范围中的第一列,因此可以通过数字引用: / p>
This will get you the first Column in your range, so you can reference by number:
range = xlWorkSheet.UsedRange.Columns[1, Type.Missing]
这篇关于Usedrange在excel列中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!