I am using Aspose Cells to get data from excel file in each row I have data like this
| Name | PhoneNumber | Email | Group
| Jack | +1456985 | | Users
When I try to read contact from row with this
((Row)currentContact).GetCellByIndex(2).StringValue
Code gives me "Users" that should returns " " and After that
((Row)currentContact).GetCellByIndex(3).StringValue
that actually should return "Users" But this line throws IndexOutOfBoundException .
It seems that aspose skips empty cells . can anyone help me with this ?