February 5, 2013 at 12:16 am
Hi All,
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 7, 2013 at 8:22 am
In Business Intelligence Development Studio (BIDS)/SQL Server Development Tool (SSDT), when you open a report, there is a menu item called "Report" that displays in the IDE. Select the Report Properties option and within that option, select the Code option. You can put the function there and then reference it on your report, using an expression. See here[/url] for an example. Of course, you have to convert the syntax to VB.NET.
Hope that this helps.
- Chris
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply