能帮忙看看吗?如果结果等于0就不会显示,可以让“财务_待开piao”列 显示0吗?就是不过是多少都显示,即使是零,现在就是 当计算后财务_待开piao列为零的时候就不显示了。
If e.DataRow.IsNull("绑定号")=False Then
Dim dr As DataRow = DataTables("企业档案").Find("编号='" & e.DataRow("绑定号") & "'")
If dr IsNot Nothing Then
'dr("财务_待开piao")=DataTables("订单附表").Compute("sum(订单核算_合计)","绑定号='" & e.DataRow("绑定号") & "' and 收款信息_开piao状态='未开piao' and 业务往来_方式='订单'")
dr("财务_待开piao")=DataTables("订单附表").Compute("sum(订单核算_合计)","绑定号='" & e.DataRow("绑定号") & "' and 收款信息_开piao状态 In ('未开piao','核对中') and 业务往来_方式='订单'")
'收款信息_开piao状态 In ('未开piao','核对中')
End If
End If '计算未开piao合计