Data consolidation
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi mighty community,
I'm trying to merge two data sets into one.
Dataset 1 contains list of student information such as name
student ID name
112233 David
113344 Peter
Dataset 2 contains the grades of the student per subject enrolled
student ID Grade
112233 A
112233 B
112233 D
113344 B
113344 C
What is the best way to combine the dataset and display the information as below (regardless of subjects, just showing the list of grades)?
student ID name Grade
112233 David A, B, D
113344 Peter B, C
cheers!
Solved! Go to Solution.
- Labels:
- Data Challenge
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Instead of JOIN, how about Find/Replace (Append function)?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
IN your case, Find/Replace will also work because of single key field.
