Foxtable(狐表)用户栏目专家坐堂 → [求助]关于手工编码进行统计(已解决)


  共有10022人关注过本帖树形打印复制链接

主题:[求助]关于手工编码进行统计(已解决)

帅哥哟,离线,有人找我吗?
唐尸三摆手
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:四尾狐 帖子:928 积分:7769 威望:0 精华:13 注册:2008/9/1 11:58:00
  发帖心情 Post By:2012/11/20 11:23:00 [显示全部帖子]

'///统计表datacolchanged事件

Dim dr As DataRow = e.DataRow
Dim dt As DataTable =DataTables("名册")
If e.DataCol.name = "车间" And e.DataRow.IsNull(e.DataCol.name) = False Then
    For Each dc As DataCol In e.DataTable.DataCols
        If dc.name.StartsWith("技术等级") Then
            Dim c As String = dc.name.SubString(dc.Name.IndexOf("_")+1)
            dr(dc.name)= dt.Compute("Count(姓名)", "车间 = '"& dr("车间") &"' And 技术等级 = '"& c &"' And 离厂日期 is null")
        ElseIf dc.name = "在册人数" Then
            dr(dc.name)= dt.Compute("Count(姓名)", "车间 = '"& dr("车间") &"' And 离厂日期 Is null")
        End If
    Next
End If


 回到顶部