February 4, 2013 at 10:10 pm
Hi All,
Am trying to create a report like. Here i user two groups. On the group2 i given a page break. The problem is suppose i view the second page if the values is under group1 the group1 has to display the G1name-Continued.
February 5, 2013 at 12:09 am
This the formula they have written in crystal reports.How to implement this one in SSRS2008R2?
Formula:
Shared StringVar sNewBranch;
StringVar sPrintMe := "yy";
if sNewBranch = {@BName-BID} then
(
sPrintMe := totext({salesrepgensummary.branch_name}) + " - " + totext({salesrepgensummary.branch_code}) & " -continued ";
)
ELSE
(
//sNewBranch:= {@BName-BID};
sPrintMe := totext({salesrepgensummary.branch_name}) + " - " + totext({salesrepgensummary.branch_code});
)
;
February 5, 2013 at 12:11 am
This the formula they have written in crystal reports.How to implement this one in SSRS2008R2?
Formula:
Shared StringVar sNewBranch;
StringVar sPrintMe := "yy";
if sNewBranch = {@BName-BID} then
(
sPrintMe := totext({salesrepgensummary.branch_name}) + " - " + totext({salesrepgensummary.branch_code}) & " -continued ";
)
ELSE
(
//sNewBranch:= {@BName-BID};
sPrintMe := totext({salesrepgensummary.branch_name}) + " - " + totext({salesrepgensummary.branch_code});
)
;
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply