Foxtable(狐表)用户栏目专家坐堂 → [求助]引用


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

主题:[求助]引用

帅哥,在线噢!
苏州老街
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:三尾狐 帖子:736 积分:4708 威望:0 精华:0 注册:2016/10/19 16:45:00
[求助]引用  发帖心情 Post By:2025/1/25 8:24:00 [只看该作者]

老师好,“应收款统计"表的"来源"列只引用"应收款"表"摘要"列的销售字段

Dim ysk1 As New SQLCommand          '年度统计
Dim ys1 As DataTable
ysk1.C  onn  ecti
Dim t9 As Table = Tables("应收款")
Dim filter4 = iif(t9.filter > "", t9.filter, "1=1")
ysk1.CommandText = "SE LECT DIS  TINCT year(付款日期) as 年, 摘要,客户ID,客户 from {应收款} where " & filter4
ys1 = ysk1.ExecuteReader()
For Each dr As DataRow In ys1.datarows
    filter4 = "年 = '" & dr("年") & "' and 来源 = '" & dr("摘要") & "' and 客户 = '" & dr("客户") & "'"
    Dim ndr As DataRow = DataTables("应收款统计").find(filter4)
    If ndr Is Nothing Then
        ndr = DataTables("应收款统计").addnew
    End If
    ndr("年") = dr("年")
    ndr("来源") = dr("摘要")
    ndr("客户") = dr("客户")
Next

 回到顶部