Foxtable(狐表)用户栏目专家坐堂 → [求助]如何以列值为条件自动提取其它表中的值


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

主题:[求助]如何以列值为条件自动提取其它表中的值

帅哥哟,离线,有人找我吗?
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110592 积分:562856 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2017/6/12 21:33:00 [显示全部帖子]

专柜费用表DataColChanged事件

Select Case e.DataCol.Name
    Case "商户名称","抄表日期"
        If e.DataRow.IsNull("商户名称") = False AndAlso e.DataRow.IsNull("抄表日期") = False
            Dim d2 As Date = e.DataRow("抄表日期")
            Dim d As Date = d2.AddMonths(-1)
            Dim fd As Date = new Date(d.Year,d.Month,1)
            Dim ld As Date = new Date(d2.Year,d2.Month,1)
            Dim dr As DataRow = DataTables("费用总表").Find("商户名称='" & e.DataRow("商户名称") & "' And 抄表日期 >= #" & fd &  "# And 抄表日期 < #" & ld & "#")
            If dr IsNot Nothing Then
                e.DataRow("水费_水表起码") = dr("水表止码")
                e.DataRow("电费_电表起码") = dr("电表止码")
            End If
        End If
End Select

 回到顶部