我非常需要帮助。 我是水晶报告和视觉工作室的新手。
我的教授给我们一个作业,我无法得到他想看到的输出。
现在我正在使用visual studio 2010和水晶报告 并且它没有显示正确的输出。
我的数据集中的数据表是:
MALL_DESC,
OUTLET_NAME,
and
ITEMNAME
the datatable in my data set are also the name of columns
in the table in our database.
they are two tables that i joined together.
table1: M_OUTLET
table2: T_SALES_DETAIL
当我运行我的程序时 我的水晶报告给了我这样的输出:
MALL_DESC OUTLET ITEMNAME
SM LIPA LIPA CAFE BLUE CUPCAKE
SM LIPA LIPA CART PINK CUPCAKE
SM BACOLOD BACOLOD CAFE BLUE CUPCAKE
SM BACOLOD BACOLOD CART PINK CUPCAKE
但我想要的输出是:
MALL_DESC OUTLET BLUE CUPCAKE PINKCUPCAKE
SM LIPA LIPA CAFE 5 12
SM LIPA LIPA CART 23 7
SM BACOLOD BACOLOD CAFE 4 8
SM BACOLOD BACOLOD CART 19 22
请帮助我
非常感谢你。
fionakyla
答案 0 :(得分:0)
看起来您需要调整一些数据集。如果两个项目名称是静态的,您可以使用Mall,Outlet,Quantity_blue,Quantity_pink。
在您的水晶报告中,您将有两个直接堆叠在一起的分组,即Mall和Outlet,然后是在第二个分组下列出的所有字段。
"MALL" "OUTLET" "BLUE" "PINK" <-labels
----Group by Mall----
----Group by Outlet----
[Mall] [outlet] [blue] [pink] <- fields from the dataset
^希望有道理......