Posts

Showing posts from July, 2013

How to Read Excel Cell Values With C#

From this post you will be able to learn How to read row data in Excel worksheet or How to find the used area in an Excel worksheet from C# For reading entire content of an Excel file in C#, we have to know how many cells used in the Excel file. In order to find the used range we use "UsedRange" property of xlWorkSheet . It will return the last cell of used area Excel.Range range ; range = xlWorkSheet.UsedRange;