hierarchy wise:
topmost group: group_a
then :group_b
then :group_c
then :group_d
i want to show group_d total into group_b
->this is normal report not matrix report
->not any footer and header group
->if i am doing this way : =SUM(Fields!ForecastValue.Value, "group_d") then getting error "The Value expression for the textbox ‘txtbox70’ has a scope parameter that is not valid for an aggregate function. The scope parameter must be set to
a string constant that is equal to either the name of a containing group, the name of a containing data region, or the name of a data set."
Try to use below expression where as you want to get total from another :
=ReportItems!textbox1.Value
Replace above textbox1 value with your corresponding textbox name where you are getting the exact total & apply this expression to another location.
Suppose you have textbox1 which is showing total 30, and you want to show it at another location, so by using above mentioned expession, you will get the 30 value at another location.
Member
177 Points
312 Posts
want to show one group's total into another
Sep 30, 2013 11:46 AM|nkd1083|LINK
Hi,
I want to show one group's total into another:
hierarchy wise:
topmost group: group_a
then :group_b
then :group_c
then :group_d
i want to show group_d total into group_b
->this is normal report not matrix report
->not any footer and header group
->if i am doing this way : =SUM(Fields!ForecastValue.Value, "group_d") then getting error "The Value expression for the textbox ‘txtbox70’ has a scope parameter that is not valid for an aggregate function. The scope parameter must be set to a string constant that is equal to either the name of a containing group, the name of a containing data region, or the name of a data set."
Participant
1061 Points
332 Posts
Re: want to show one group's total into another
Oct 03, 2013 12:09 PM|MSDN_ice|LINK
Hi nkd1083,
Would you like to provide the tables' structure and some data to us?
According to your description, I cannot figure out what data or table will be grouped.
Thanks.
Member
177 Points
312 Posts
Re: want to show one group's total into another
Oct 04, 2013 03:11 AM|nkd1083|LINK
data is like this:
regards,
Participant
1061 Points
332 Posts
Re: want to show one group's total into another
Oct 07, 2013 10:52 AM|MSDN_ice|LINK
Hi nkd1083,
Please refer to below for learning Group information in data report.
http://msdn.microsoft.com/en-us/library/aa241736(v=vs.60).aspx
Your issue is about multiple group, this based on the Field Format. Sorry I cannot figure it out.
I'd like to suggest you search online : multiple group in crystal report
Hope this helps. Thanks.
Participant
1220 Points
336 Posts
Re: want to show one group's total into another
Oct 19, 2013 07:38 PM|jeeveshfuloria08|LINK
Try to use below expression where as you want to get total from another :
Replace above textbox1 value with your corresponding textbox name where you are getting the exact total & apply this expression to another location.
Suppose you have textbox1 which is showing total 30, and you want to show it at another location, so by using above mentioned expession, you will get the 30 value at another location.