我有一个我刚刚在vb.net中创建的应用程序,并且使用65个以上的不同表访问数据库,我正在使用Crystal Report来显示该报告,但是我的问题是我如何只对具有相同表项的选定表列求和ID号,请注意,我查询的表格是用于选择的代码
Getreportdisplay.Enabled = True
Getreportdisplay.ReportSource = Application.StartupPath + "\Qmateplusreport.rpt"
Getreportdisplay.SelectionFormula = "{ClientDB.ID} = '" & txtdisplaydetails.Text.ToString() & "'"
Getreportdisplay.Refresh()
Getreportdisplay.RefreshReport()