Hi,
Let's say we have 2 datasets, partitioned by letters :
Dataset 1 :
- partition A
- partition B
Dataset 2 :
- partition B
- partition C
I would like to get a "summed" dataset, where existing partitions are stacked.
Dataset 3 :
- partition A (from 1)
- partition B (from 1 + 2)
- partition C (from 2)
Simply stacking those two datasets fails for partition A and C since one of the sources is empty for each.
Can I do that without scenario variables ?
0 ·