I have a spreadsheet (.xlsx) with multiple worksheets. I want one worksheet as a Tabular with the proper column headers. Currently I use Import to produce a list of lists and use Tabular to convert it to a Tabular. This feels a bit roundabout and duplicative. Have I overlooked a more direct approach, so that I could import directly as a Tabular?
Edit note: added text in bold.
Edit: example of current code strategy
data = Import["fname.xlsx", {"Sheets", 3}] (* get 3rd sheet *)
newtab = Tabular[Rest@data, First@data]
