Link to home
Start Free TrialLog in
Avatar of Beverly Penney
Beverly PenneyFlag for Canada

asked on

Can someone please check the format of th value in my textbox, I am getting an error?

Hi,

I have a textbox in my report with this:
= "Total Number of Incidents in Service Alliance queue: "&"          "&(Fields!seq.Value, "IncidentsInSAQueue")

and it is giving me an error:
C:\Reports\Astea\Astea\Service_Alliance_Incident_Report.rdl The value expression for the textbox textbox3 contains an error: [BC30198] ')' expected.
 Can someone please show me what the issue is?

Thansk,
Rhonda
Avatar of Auric1983
Auric1983
Flag of Canada image

Rhonda,

Try this

= "Total Number of Incidents in Service Alliance queue: &     " + First(Fields!seq.Value,"IncidentsinSAQueue")

in SSRS the concatination charactor is a +
ASKER CERTIFIED SOLUTION
Avatar of shorak
shorak
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial