sql - How to show a dataset field in a single textbox ssrs -
i have created dataset in ssrs hooked stored procedure. stored procedure resultset includes following columns outputid, timestamp, productname, price, productnumber.
i show above in tablix in report works fine. have 10 rows.
the question have
i want textbox on report show productnumber follows 1,2,3,4,5,6,7,8,9,10
i new ssrs forgive ignorance.
the backend sql server 2008 r2.
try in textbox expression =join(lookupset(1, 1, "field name,"datasetname"),",")
this concatenate result comma
Comments
Post a Comment