Scripting : Multiple tables from Excel
Writing a script to open Excel files that contain multiple sheets then do independent analysis with each individual sheet. The names and number of sheets from different Excel files can be different, so would like to write a generic code that can work on different files.
Used Open command to open the file
dt = Open ("file path");
This particular example file has three sheets, so show (dt); giv...