I have a column that I need to sum and present on a page. Unfortunately, the values within the column are stored as text data. I figured I could utilize the "isNumeric" function here, but it doesn't seem to work. Is there a better way to handle summing text data (that are all numbers)within a query?
SELECT tbl_LD_Data.datex, sum(isnumeric(tbl_LD_Data.Timex))as TimeSum [/color red]
FROM tbl_LD_Data, tbl_LD_Dates
SELECT tbl_LD_Data.datex, sum(isnumeric(tbl_LD_Data.Timex))as TimeSum [/color red]
FROM tbl_LD_Data, tbl_LD_Dates