Wow, there are a LOT of possible solutions for this. I haven't found the right one yet as most are either at one end or the other of what I need to do.
I need to create a collection of data that pulls all the detail information for a specific date from one collection and then add the master data to each record.
DataSource1 - MasterData:
ProjectName
ProjectType
CourseType
ID (Key field)
DataSource2 - Detail:
Title (Text field, This is a person)
Role
WeekEnding
Hours
MasterID (Key field)
I need to create a filtered collection of data from DataSource2 for a specific date and for each record that is found, add the corresponding data (ProjectName, ProjectType & CourseType) from DataSource1 using the ID-MasterID match.
The result:
Collection:
ProjectName
ProjectType
CourseType
Title
Role
WeekEnding
Hours
I found solutions for adding all columns and adding a single column but not for adding specific multiple columns.
Any help will be greatly appreciated.