Reporting services: Join all field on a dataset

后端 未结 2 887

In a report, I\'ve a dataset with a filter(based on a MultiValue parameter).

This dataset contains two field: Id and Name.

I need to display somewhere the co

2条回答
  •  孤城傲影
    2020-12-17 02:55

    I may be a bit late for this but for anyone that's interested in this, there is a rather easy way of doing this in SSRS:

    =Join(LookupSet(1,1,Fields!Name.Value, "DatasetName")," / ")
    

提交回复
热议问题