-1

I am simply trying to accomplish using a few views in separate tables, but within the same report. I could be fundamentally doing something wrong, but whenever I add a new table, it only allows me to pick values from the first dataset that I created. I have added a second one, but I am unable to figure out how to actually put it into another table.

Any help would be greatly appreciated.

Thank you so much!

2 Answers2

0

Yes, This is a duplicate question and can be found Here.

You can reference other datasets in one table by defining the dataset name.

=First(Fields!fieldname.Value,"DataSet1")

Reply to comment- Click on the table that you want, and go to the properties, look at the DataSetName and select the name of the dataset you want. Table Properties

Community
  • 1
  • 1
NewGuy
  • 1,020
  • 1
  • 9
  • 24
  • This isn't really a comprehensive walkthrough. I don't even see where you would plug in a different dataset into a table. I'm also not trying to merge multiple datasets into a singular table. Just 2 sets - in 2 different tables. – Chris DellaDonna Oct 21 '16 at 16:41
0

Providing the report isn't list based, you can simply have two tables powered by two different datasets next to each other in the report body.

If it's list based, your report body is fixed to the main dataset associated to the list. You can get data from other datasets into there using lookup/lookupset/aggregate functions, but only really as single values (or as a list from lookupset).

It sounds like you're trying to insert a table into a list which is already there - does it need to be list based?

BishNaboB
  • 1,047
  • 1
  • 12
  • 25