You can drag and drop it to create a copy of outline box but you will loose out on the red triangle (and getting the correct place is a bit clunky)
![jthi_0-1697796138114.png jthi_0-1697796138114.png](https://community.jmp.com/t5/image/serverpage/image-id/57852i97A3794D394044F5/image-size/medium?v=v2&px=400)
Same does happen when scripting
Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
dist = dt << Distribution(
Stack(1),
Continuous Distribution(Column(:weight), Horizontal Layout(1), Vertical(0))
);
rep = Report(dist);
sumstat = rep[OutlineBox("Summary Statistics")];
rep[OutlineBox("weight"), ListBox(2)] << Set Horizontal(0);
rep[OutlineBox("weight"), ListBox(2)] << Append(sumstat << clone box());
sumstat << Visibility("Collapse");
![jthi_2-1697796398786.png jthi_2-1697796398786.png](https://community.jmp.com/t5/image/serverpage/image-id/57854i3D687F170E935E29/image-size/medium?v=v2&px=400)
Moving both tables is bit easier as you can change change the List Box properties but I think this isn't captured by JMP either
![jthi_1-1697796301122.png jthi_1-1697796301122.png](https://community.jmp.com/t5/image/serverpage/image-id/57853i6275B7C71D44CC28/image-size/medium?v=v2&px=400)
A bit related Is there a way to move the default distributions chart "Quantiles" & "Summary Statistics" into the s...
-Jarmo