Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Add Multiple dates in Column per number

Hello,

I have a table of numbers that come from another table, another table with the same numbers and names, and a third table with the same numbers and dates.

I need to add a list of values for each number so that I can summarise data for each year in a table.

All the tables have ralationships to Table 1.

 

Essentially I have this:

Table 1

12345
56789
09876 
12456
67854

Table 2

12345 Name1 
56789 Name2
09876 Name3
12456 Name4
67854 Name5

Table 3

12345 Value1 01.01.2022
56789 Value1 01.01.2022
09876 Value1 01.01.2022
12456 Value1 01.01.2022
67854 Value1 01.01.2022
12345 Value2 02.01.2022
56789 Value2 02.01.2022
09876 Value2 02.01.2022
12456 Value2 02.01.2022
67854 Value2 02.01.2022

 

The desired result is:

 

12345 Name1 Value1 01.01.2022
12345Name1Value102.01.2022
56789Name2Value201.01.2022
56789Name2Value202.01.2022
09876Name3Value301.01.2022
09876Name3Value302.01.2022
12456Name4Value401.01.2022
12456Name4Value402.01.2022
67854Name5Value501.01.2022
67854Name5Value502.01.2022

 

I hope this explains what I'm trying to accomplish.