Hey everyone!
I am reading an XLS spreadsheet within an ASP page and getting weird results. Here is a sample of the data I am reading:
1 2 3
9.5.07 Change Legend
45% 1 1 = Offense, 0 = Defense
The first row is always read as the field names so row 2 is index 0. So the data should be like this:
(0,0) = 9.5.07
(1,0) = Change
(2,0) = Legend
(0,1) = 45%
(1,1) = 1
(2,1) = 1 = Offense, 0 = Defense
But what I get when I read it is this:
(0,0) =
(1,0) =
(2,0) = Legend
(0,1) = 45%
(1,1) = 1
(2,1) = 1 = Offense, 0 = Defense
Is there something I should know about readin XLS files? This really doesn't make any sense to me.
-Greg
I am reading an XLS spreadsheet within an ASP page and getting weird results. Here is a sample of the data I am reading:
1 2 3
9.5.07 Change Legend
45% 1 1 = Offense, 0 = Defense
The first row is always read as the field names so row 2 is index 0. So the data should be like this:
(0,0) = 9.5.07
(1,0) = Change
(2,0) = Legend
(0,1) = 45%
(1,1) = 1
(2,1) = 1 = Offense, 0 = Defense
But what I get when I read it is this:
(0,0) =
(1,0) =
(2,0) = Legend
(0,1) = 45%
(1,1) = 1
(2,1) = 1 = Offense, 0 = Defense
Is there something I should know about readin XLS files? This really doesn't make any sense to me.
-Greg