If e.Col.Name = "日期" Then
'If e.Row.IsNull("日期") = False Then '这个是日期值,不能这样比较的
If e.Row.IsNull("日期") = False AndAlso e.Row.isnull("创建日期") = False Then
If e.Row("日期") <= e.Row("创建日期").AddDays(-8) Then
e.Style = "样式7"
End If
If e.Row("创建日期").AddDays(-7) < e.Row("日期") And e.Row("日期") < e.Row("创建日期").AddDays(-5) Then
e.Style = "样式6"
End If
If e.Row("创建日期").AddDays(-6) < e.Row("日期") And e.Row("日期") < e.Row("创建日期").AddDays(-4) Then
e.Style = "样式5"
End If
If e.Row("创建日期").AddDays(-5) < e.Row("日期") And e.Row("日期") < e.Row("创建日期").AddDays(-3) Then
e.Style = "样式4"
End If
If e.Row("创建日期").AddDays(-4) < e.Row("日期") And e.Row("日期") < e.Row("创建日期").AddDays(-2) Then
e.Style = "样式3"
End If
If e.Row("创建日期").AddDays(-3) < e.Row("日期") And e.Row("日期") < e.Row("创建日期").AddDays(-1) Then
e.Style = "样式2"
End If
If e.Row("创建日期").AddDays(-2) < e.Row("日期") And e.Row("日期") < e.Row("创建日期").AddDays(0) Then
e.Style = "样式1"
End If
If e.Row("创建日期") <= e.Row("日期").AddDays(-4) Then
e.Style = "提前5"
End If
If e.Row("日期").AddDays(-5) < e.Row("创建日期") And e.Row("创建日期") < e.Row("日期").AddDays(-3) Then
e.Style = "提前4"
End If
If e.Row("日期").AddDays(-4) < e.Row("创建日期") And e.Row("创建日期") < e.Row("日期").AddDays(-2) Then
e.Style = "提前3"
End If
If e.Row("日期").AddDays(-3) < e.Row("创建日期") And e.Row("创建日期") < e.Row("日期").AddDays(-1) Then
e.Style = "提前2"
End If
If e.Row("日期").AddDays(-2) < e.Row("创建日期") And e.Row("创建日期") < e.Row("日期").AddDays(0) Then
e.Style = "提前1"
End If
End If
End If