Same as Make Data Table, but also searches the report for report tables with the same columns and combine all of these into the new data table.
New Window( "Mountains",
	tb = Table Box(
		String Col Edit Box(
			"Mountain",
			{"K2", "Delphi", "Kilimanjaro",
			"Grand Teton"}
		),
		Number Col Edit Box(
			"Elevation (meters)",
			{8611, 681, 5895, 4199}
		),
		Plot Col Box( "", {8611, 681, 5895, 4199} )
	)
);
tb <<
Set Cell Changed Function(
	Function( {this, col, row},
		Print(
			(col << Get Heading) || ": row:" ||
			Char( 3 ) || " is now " ||
			Char( col << Get( row ) )
		)
	)
);
Locks the first n columns. You cannot drag the locked columns or drag columns before them.
If the rows of the Table Box are selectable (Set Selectable Rows(True)), sets the background color for the selected rows.

Help created on 9/19/2017