有一列是日期时间列,数据每行是
2018-01-01 16:12
2018-01-02 10:11
2018-01-02 00:00
2018-01-03 15:22
2018-01-04 00:00
想筛选出所有 时间是00:00的行
直接筛选:
Tables(“表A”).Filter = “日期= Convert(Substring(Convert([日期], ‘System.String’),1,10),‘System.DateTime’)”
想用drawcell事件标注出来:
if e.row(“进出口日期”).Hour=0 and e.row(“进出口日期”).Minute=0 then
e.style = “样式1”
end if
-----------------或者------------------
if e.row.isnull(“进出口日期”) = false andalso e.row(“进出口日期”) = e.row(“进出口日期”).date then
e.style = “样式1”
end if