e.DataRow("任务量") =e.DataRow("工作时间") / e.DataRow("循环时间")
改成
If e.DataRow("循环时间") = 0 then
e.DataRow("任务量") = Nothing
Else
End If