If e.DataCol.Name = "菲尔人格分数" Then If e.DataRow.IsNull("菲尔人格分数") Then e.DataRow("结论") = Nothing e.DataRow("评语") = Nothing Else Dim dr As DataRow dr = DataTables("T_PT_PhilQ").find("最高分 >= " & e.DataRow("菲尔人格分数") & " and 最低分 <= " & e.DataRow("菲尔人格分数")) If dr IsNot Nothing Then e.DataRow("结论") = dr("结论") e.DataRow("评语") = dr("评语") End If End If End If