参考:
http://www.foxtable.com/webhelp/topics/0625.htm
If e.DataCol.Name = "毛利润" orelse e.DataCol.Name = "销售总额比" Then
If e.DataRow.IsNull("毛利润") orelse e.DataRow.IsNull("销售总额比") Then
e.DataRow("提成") = Nothing
Else
if e.DataRow("毛利润") < e.DataRow("销售总额比")
e.DataRow("提成") = 0.1
elseif e.DataRow("毛利润") > e.DataRow("销售总额比")
e.DataRow("提成") = 0.2
else
e.DataRow("提成") = 0.15
end if
End If
End If