May be someone here can help to untwist my brain. I could not find a solution up to now.
I have 2 tables and want to get a cross join. Sample:
Data Feed 1 returns:
SQUARE 08 1234
CALC 08 5678
Data Feed 2 returns:
07
08
09
I want to construct the following output within a Data Feed:
SQUARE 07 0
SQUARE 08 1234
SQAURE 09 0
CALC 07 0
CALC 08 5678
CALC 08 0
I didn't manage to achieve this with the Combine or Concatenate operators. Any idea?

Donald Dillon on
Georg,
I have a similar situation.
We have projects started by different groups. Each project has a start date (rounded to month)
Not all groups started a project every month
The results we get now
x-axis=month
y-axis=count of projects
the problem is that if a month had no projects the x-axis condenses and simply 'hides the gap'.
We want to display all months in the range and then of course the number of projects will be 0. I envision doing this somehow by extracting the min and max months in the records, generating the records to fill the gap and to give each month a record value of 0.
then I will join where the records with real values will be supplemented by the records with values of 0 to dynamically create a 'full' data set to be presented.
Do you see the similarities? I would be interested in any solution you come up with as it may be applicable for my scenario.
Thanks
Donald