Crystal Reports中出现重复结果的原因

时间:2018-03-26 23:59:38

标签: crystal-reports crystal-reports-2010 crystal-reports-2013

我使用下面的SQL命令获得水晶报告。

我想知道是否有人可以帮助我解释为什么我会在报告中出现重复的人。

目前,我为销售客户经理(SAM)获得了多行, 我想要每个SAM一行。

enter image description here

My 1st Group Header基于行业代码, 第二组标题位于command.sector上, 第三组标题在SAM上

enter image description here

val action = (for {
  _ <- table1.filter(_.id === id).update(table1Record)
  _ <- {
    if (doUpdate) DBIOAction.seq(
      table2.filter(_.id === id).update(table2Record),
      table3.filter(_.id === id).update(table3Record)
    )
    else DBIOAction.successful(())
  }
} yield ()).transactionally

0 个答案:

没有答案