'如果是数值型列,且不是总分列 If e.Col.IsNumeric AndAlso e.Col.Name <> "总分" Then If e.Row.IsNull(e.Col.Name) = False '且该列已经输入内容 If e.Row(e.Col.Name) < 60 Then '如果该列的值小于60 e.Style = "不及格" '那么用"不及格"样式绘制单元格 ElseIf e.Row(e.Col.Name) > 95 Then '如果单元格的值大于95 e.Style = "优秀" '那么用"优秀"样式绘制单元格 End If End If End If