Select Case e.DataCol.Name
Case "年度","月均文明单位奖"
Dim fdr7 As DataRow = e.DataTable.find("年度 = \'" & e.DataRow("年度") & "\'-1 And 身份证号 = \'" & e.DataRow("身份证号") & "\'", "月均文明单位奖")
If e.DataRow("月均文明单位奖") = Nothing Then
e.DataRow("上年度文明单位奖") = Nothing
Else
If e.DataRow("年度") = 2018 Then
e.DataRow("上年度文明单位奖") = 600
ElseIf e.DataRow("年度") > 2018 Then
e.DataRow("上年度文明单位奖") = fdr7("月均文明单位奖")
End If
End If
End Select