Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I have text before a expression SSRS

I need to be able to have the textbox within the table say " No. Of Tickets: " and then have the expression =Count(Fields!TicketID.Value) So that it is more user friendly because it wont just show a random number in the textbox.(P.S: this is going to be exported to excel)

like image 889
Robert Vasistha Avatar asked Mar 13 '23 19:03

Robert Vasistha


1 Answers

this should solve your Issue

="No. of Tickets: " & Count(Fields!TicketID.Value)

like image 130
Sythr Avatar answered Mar 24 '23 21:03

Sythr