Created
April 9, 2014 21:55
-
-
Save statgeek/10322081 to your computer and use it in GitHub Desktop.
List all Excel sheets in a workbook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*This code will create a libname reference to an Excel file and list all Sheets in the results window; | |
libname sample pcfiles path='C:\Temp\Sample_v2.xlsx'; *your statement will depend on your OS/Excel version; | |
proc contents data=sample._all_; | |
run; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment