SOLVED
Combining data
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
SCK
8 - Asteroid
‎12-27-2020
08:21 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi all.. I need help in combining and concatenating data. I have the below input and desired output. Basically, what is happening is the data in column A is concatenating with the headers from column B onwards and hence, we are left with. Please help.
Input:
Data | Book | Games | Events |
Sam | 4 | 7 | 8 |
Rachel | 5 | 5 | 8 |
Nathan | 2 | 6 | 6 |
Anthony | 7 | 4 | 6 |
Output:
Data | Value |
Book - Sam | 4 |
Games - Sam | 7 |
Events - Sam | 8 |
Book - Rachel | 5 |
Games - Rachel | 5 |
Events - Rachel | 8 |
Book - Nathan | 2 |
Games - Nathan | 6 |
Events - Nathan | 6 |
Book - Anthony | 7 |
Games - Anthony | 4 |
Events - Anthony | 6 |
Solved! Go to Solution.
3 REPLIES 3
17 - Castor
‎12-27-2020
08:34 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @SCK
This is my solution for you.
1. Transpose the each field
2. Change the data size of "Data" Field to update
3. Combine "Data" and "Name" field
21 - Polaris
‎12-27-2020
10:08 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@SCK
Almost similar with @AkimasaKajitani 😀
grazitti_sapna
17 - Castor
‎12-27-2020
11:14 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
