Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am struggling with the following: i need to combine two tables into ResultTable as below.
MainTable:
CompanyTable:
ResultTable:
//I loaded all dates from my Calendar as a start:
LOAD
Date
RESIDENT [Calendar];
//Then for each Date I want to load Company-Account values from the CompanyTable
FOR EACH a in FieldValueList('Date')
Concatenate ([MainTable])
Company,
Account
RESIDENT [CompanyTable];
NEXT a;
It does not work as I want - it just created the following table:
I guess it is wrong to use Concatenate here, than what is the correct way?
Thank you!
Check here
Re: Create a table made of two (for each)