Ron,
If I just position the cursor over the cell, do right click, copy/paste
the cell (and numeric value) the problem remains unchanged. If I
instead drag the cursor over just the numeric value in the cell and
copy/paste only the numbers into a new cell math functions then work.
Having to individually copy the cell data's not really a solution, so I
figured the way each cell held its data was the culprit.
Excel's not something I use often enough to understand the inclusion of
formulas to correct the problem. Since ASP's sending the data/recordset
that populates the Excel tables would it be included on the ASP end? If
it's to be included on the Excel end how would clients benefit since
it's not been put to their (client) end as well?
-Don't mean to drag this out.
Thanks again,
Dave
---
Dave,
From what you've written, including the above, it's clear that the data is
coming into Excel as text. The SUM function, as well as other functions,
interpret textual representations of numbers as having a numeric value of '0'.
If you want to use these math functions in Excel, you are going to have to
either convert them in Excel, or convert them when you import them into Excel,
or convert them before you import them into Excel.
If you are going to convert them in Excel or during the import, you are going
to have to furnish your clients with the appropriate tools. The only
alternative would be to convert the data before your clients get at it, so it
is imported into Excel as numbers.
While there are a number of different methods that I know can be applied in
Excel, I don't know anything about generating the data with ASP and so cannot
help you there -- except that we have more clearly defined the problem.
--ron