-- 作者:有点甜
-- 发布时间:2018/11/9 18:15:00
--
Dim fdr = DataTables("月度考核填报_Table1").Find("考勤项目 = \'缺勤项目\' and (病假天数 is null or 事假天数 is null)")
If fdr IsNot Nothing Then
msgbox("有病假、事假没填")
DataTables("月度考核填报_Table1").replacefor("病假天数", 0, "考勤项目 = \'缺勤项目\' and 病假天数 is null")
DataTables("月度考核填报_Table1").replacefor("事假天数", 0, "考勤项目 = \'缺勤项目\' and 事假天数 is null")
End If
|