Need help!
I have two datasets that need to be built in a single table.
In both the datasets I have a column "Time" as common. So I am using a LOOKUP function to use 2 datasets in a single table.
The problem is, when there is no data for a particular time in dataset1 I am not able to show time for the rows of dataset2.
Here is an example,
How can I display time even there is no data for the same from dataset1.
(I can just reverse the datasets but there may be cases when there is no data coming from dataset2 also for a particular time)
I have two datasets that need to be built in a single table.
In both the datasets I have a column "Time" as common. So I am using a LOOKUP function to use 2 datasets in a single table.
The problem is, when there is no data for a particular time in dataset1 I am not able to show time for the rows of dataset2.
Here is an example,
Time | Dataset1Col1 | Dataset1col2 | Dataset2Col1 | Dataset2Col2 |
1:00 | valueA | ValueD | ABC | 123 |
2:00 | valueB | ValueX | XYZ | 456 |
DEF | 789(This is for time 3:00) |
How can I display time even there is no data for the same from dataset1.
(I can just reverse the datasets but there may be cases when there is no data coming from dataset2 also for a particular time)