in my database i have a table of countries. also each country has it's different datasource (dataset) with the name of the cities in this county. I want to create a table in my report with the contry name and the 2nd column to be the name of the cities in that country. I was thinking to use the Lookup function to Lookup the name of the cities in correct datasource according the Country. But the problem is that the Lookup function returns only the first name of the city and not a list of cities. How can i do what i need ? (I can't use LINKED-Servers)
0
votes
1 Answers
0
votes
You need utilize another layer of technology before your presentation layer (SSRS) to join some of that data together. SSRS just won't group together a single table from n different data sources. I'd suggest using a tool like Tabular if you need to join the data and can't utilize SQL linked servers.
As a bit of an SSRS hack, you may be able to create a separate table for each country and present them as a single table with a bunch of border manipulation. This is not preferable but you obviously have a finite set of countries if each country requires a separate dataset.
LookupSet, notLookup, for multiple values. - Ian Preston