C
Craig
I test for nulls with the following...
DataSetAnalyticalReportCountsAndSums1.tblTowers(0).IsAvgSupplyTotalHardnessNull
But how do I test for nulls on myRow("AvgSupplyTotalHardness") in the code
below?
For Each myRow In
DataSetAnalyticalReportCountsAndSums1.tblTowers.Rows
'Sum the averages of each tower
dblValue = dblValue + myRow("AvgSupplyTotalHardness")
Next
I don't think isDBNull fnction works if the DB value is NULL
Thanks
DataSetAnalyticalReportCountsAndSums1.tblTowers(0).IsAvgSupplyTotalHardnessNull
But how do I test for nulls on myRow("AvgSupplyTotalHardness") in the code
below?
For Each myRow In
DataSetAnalyticalReportCountsAndSums1.tblTowers.Rows
'Sum the averages of each tower
dblValue = dblValue + myRow("AvgSupplyTotalHardness")
Next
I don't think isDBNull fnction works if the DB value is NULL
Thanks