Preview:
//Puts all the data into a Table called "Data"
	let range = selectedSheet.getUsedRange();
	let tbl = selectedSheet.addTable(range, true);
	tbl.setPredefinedTableStyle("TableStyleLight1");
	tbl.setName("Data");
	tbl.setShowBandedRows(false);
	tbl.setShowFilterButton(true);
	tbl.getSort().apply([{ key: 5, ascending: true }]);
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter