09-10-12, 05:13 PM
02-11-12, 01:01 AM
هل حاولت مع ال Functions الموجودة , أعتقد بانك حاولت
انا حاولت وبحثت بالنت ولم اصل لنتيجة
انا منتظر الحل معك
انا حاولت وبحثت بالنت ولم اصل لنتيجة
انا منتظر الحل معك
02-11-12, 01:19 AM
ما هو التقرير المستخدم
crystal
crystal
02-11-12, 01:28 AM
انا استخدم Crystal Report , لا ادري اذا الاخ a.amin يستخدم Crystal ام لا
04-11-12, 08:38 AM
أشكركم جميعا على التفاعل
نعم أستخدم Crystal Reports
نعم أستخدم Crystal Reports
02-03-13, 04:27 PM
انا استخدم تقارير فيجوال دوت نت واحتاج لنفس المطلوب
18-04-13, 04:14 PM
1. Select the Tablix in the report.
2. In the Groups pane, click the small triangle arrow at the top-right corner and select "Advanced Mode" to show static members.
3. In the Row Group hierarchy, select the (Static) item which corresponding to the group footer or tablix header in the table.
4. Specify the RepeatOnNewPage property to True, the KeepWithGroup property to Before, and the FixedData property to False.
After that, the total sum would repeated in every page.
In order to show the sum of data on every page, if there are groups in the tablix and the page break depends on the group, we can simply add a group footer, then specify the sum aggregation in it. However, if the page break only depends on the page size, we need to aggregate the sum for the current page in the page footer, please refer to the steps below:
1. Add Page Footer in the report.
2. Add a Textbox in the Page Footer.
3. Specify the expression in the Textbox like
=Sum(ReportItems!TextboxName.Value)
Please correct the Textbox name in the expression to the textbox in which the data field needs to be aggregated.
2. In the Groups pane, click the small triangle arrow at the top-right corner and select "Advanced Mode" to show static members.
3. In the Row Group hierarchy, select the (Static) item which corresponding to the group footer or tablix header in the table.
4. Specify the RepeatOnNewPage property to True, the KeepWithGroup property to Before, and the FixedData property to False.
After that, the total sum would repeated in every page.
In order to show the sum of data on every page, if there are groups in the tablix and the page break depends on the group, we can simply add a group footer, then specify the sum aggregation in it. However, if the page break only depends on the page size, we need to aggregate the sum for the current page in the page footer, please refer to the steps below:
1. Add Page Footer in the report.
2. Add a Textbox in the Page Footer.
3. Specify the expression in the Textbox like
=Sum(ReportItems!TextboxName.Value)
Please correct the Textbox name in the expression to the textbox in which the data field needs to be aggregated.
18-04-13, 04:18 PM
وجد الحل وتمت التجربة مع تقارير VB.NET AND SQL SERVER
ولايجاد اجمالي جميع الصفات في اخر التقرير يمكن اضافة
=IIf(Globals!PageNumber<>Globals!TotalPages,"","My footer text")
ولايجاد اجمالي جميع الصفات في اخر التقرير يمكن اضافة
=IIf(Globals!PageNumber<>Globals!TotalPages,"","My footer text")