Using Query could work:
Names Default To Here(1);
dt = New Table("Untitled",
Add Rows(5),
Compress File When Saved(1),
New Column("Title", Character, "Nominal", Set Values({"A", "A", "B", "B", "B"})),
New Column("Body", Character, "Nominal", Set Values({"A", "B", "C", "D", "E"}))
);
Query(Table(dt, "dt1"), "Select title, GROUP_CONCAT(body, ' ') FROM dt1 group by title");
SQL Functions Available for JMP Queries
You might also be able to do this with some split/stack/combine columns combination.
Edit: Using Transpose:
![jthi_3-1628022413589.png jthi_3-1628022413589.png](https://community.jmp.com/t5/image/serverpage/image-id/34729i7461564AEA414443/image-size/medium?v=v2&px=400)
Result table:
![jthi_4-1628022424419.png jthi_4-1628022424419.png](https://community.jmp.com/t5/image/serverpage/image-id/34730i8EC1F262C17A8298/image-size/medium?v=v2&px=400)
Use Combine Columns with Row 1 - Row 3 selected:
![jthi_5-1628022466770.png jthi_5-1628022466770.png](https://community.jmp.com/t5/image/serverpage/image-id/34731iEC1B3B20B99B4B49/image-size/medium?v=v2&px=400)
Result:
![jthi_6-1628022492015.png jthi_6-1628022492015.png](https://community.jmp.com/t5/image/serverpage/image-id/34732i860A1A10466CFFAD/image-size/medium?v=v2&px=400)
Delete unnecessary columns:
![jthi_7-1628022506271.png jthi_7-1628022506271.png](https://community.jmp.com/t5/image/serverpage/image-id/34733i05C9C573B1F1F477/image-size/medium?v=v2&px=400)
-Jarmo