Using Two Datatables in One DataSet in RDLC Report
C#
1
Posts
1
Posters
0
Views
1
Watching
-
In my report, I added two different fields from two different datatables =First(Fields!NameOne.Value, "TestDataSet_TestDataTableOne") and =First(Fields!NameTwo.Value, "TestDataSet_TestDataTableTwo"). The result shows one row and no NameTwo is displayed. Then I changed the field as =Fields!NameOne.Value,=Fields!NameOne.Value. Then error occured. How can I display Both fields containing the selected data in Both datatable. Can anybody help me???