I have created two aspx pages where first page contains a dropDownList control : <asp:DropDownListID="ddlGroupBy"runat="server"><asp:ListItemSelected="True"Value="Department"Text="Department Wise"/><asp:ListItemValue="Grade"Text="Grade Wise"/><asp:ListItemValue="Team"Text="Team Wise"/><asp:ListItemValue="Category"Text="Category Wise"/><asp:ListItemValue="Location"Text="Location Wise"/></asp:DropDownList>
And a button control which redirect me to second page wehen I click it.
Second page has CrystalReportViewerControl which displays .rpt files records.
I have also taken a CrystalReport.rpt file and designed it. In this file Recoeds will be grouped by default “Department Wise”. But I don’t know how to change the Group Name Fields (which is ‘Department’ by default) if user change the dropDownControl’s items
appropriately.
d_ambaliya
Member
3 Points
5 Posts
Crystal Reports Group Name Fields Dynamically Change
Jun 13, 2012 05:52 AM|LINK
And a button control which redirect me to second page wehen I click it.
Second page has CrystalReportViewerControl which displays .rpt files records.
I have also taken a CrystalReport.rpt file and designed it. In this file Recoeds will be grouped by default “Department Wise”. But I don’t know how to change the Group Name Fields (which is ‘Department’ by default) if user change the dropDownControl’s items appropriately.