如何在水晶报表xi中的案情陈述中设定多个条件?

时间:2018-06-27 10:48:22

标签: sql crystal-reports crystal-reports-xi

我有一个类似下面的表格记录

表:StoreQty

CompId    ProductNo   Qty
111       858         12
222       858         8
333       858         100   --I want to apply compID 333's Qty to the other CompID's Qty

111       797         16
222       797         17
333       797         250

期望输出

CompId    ProductNo   Qty    compID333Qty
111       858         12     100
222       858         8      100
333       858         100    100

111       797         16     250
222       797         17     250
333       797         250    250

在这种情况下,我不知道如何写公式

更新

我添加了同一张表并使用ProductNo进行联接,并编写如下公式

公式:

if(StoreQty.ProductNo = Store333Qty.ProductNo and Store333Qty.compId = 333)
then
    Store333Qty.Qty

我可以简单地为同一张表创建视图,并将条件放在compID = 333并将其与报告结合在一起的地方。但是我不想为一个报告创建视图

0 个答案:

没有答案