I have to combine data from 2 different datasets to single Tablix which should be sorted on Date Time.
For Example:
Dataset1:
DateTime Product Employee
2020-08-13 18:10:53.263 ABC A
Dataset2:
DateTime Product Employee
2020-08-13 19:10:20.000 XYZ A
ResultSet:
DateTime Product Employee
2020-08-13 18:10:53.263 ABC A
2020-08-13 19:10:20.000 XYZ A
Note: I cannot combine data from both the datasets at the database level as the datasets refer to 2 different datasources.
I have an idea on LOOKUP but I guess that can be used at column level but my case I need to display the data at row level from 2 datasets based on Datetime sort.
Could someone please suggest if there is a way to achieve this.
Thank you in advance!!