About 11,900,000 results
Open links in new tab
  1. Write multiple SAS datasets into one Excel sheet

    Jul 25, 2021 · I am using SAS enterprise guide 7.15. I want to export several datasets into multiple excel sheets (multiple tables in every sheet). I'm using ODS and even though i'm …

  2. Way to run Excel macros from command line or batch file?

    Jan 13, 2010 · 84 I have an Excel VBA macro which I need to run when accessing the file from a batch file, but not every time I open it (hence not using the open file event). Is there a way to …

  3. Converting Excel file into SAS Dataset - Stack Overflow

    Sep 13, 2016 · I'm trying to import a dataset into SAS enterprise guide, however am having trouble 'converting' my excel file into a new SAS dataset file. Any easy way to do this?

  4. How to put a tooltip on a user-defined function - Stack Overflow

    Nov 24, 2010 · In Excel 2007, how do I add a description and parameter hints to a user-defined function? When I start typing a function invocation for a built-in function, Excel shows a …

  5. How to run SAP GUI script from Excel Macro - Stack Overflow

    Jul 19, 2017 · I am trying to create a Excel macro which executes the SAP GUI Script. I already created the script but I didn't understand how to use that in VBA macro. This is my SAP GUI …

  6. Cannot import excel file into SAS using proc import

    You can fix your bitness (get 32 bit SAS or 64 bit Excel). You can use a PC Files Server (including hosting one on your own machine). If you're using Enterprise Guide, you can use the built in …

  7. How can I export Excel files using JavaScript? - Stack Overflow

    If you can generate the Excel file on the server, that is probably the best way. With Excel you can add formatting and get the output to look better. Several Excel options have already been …

  8. Is there a way to import multiple excel sheets using code in SAS ...

    Feb 18, 2020 · 1 The fastest and easiest way to import all Excel Sheets is to use a libname reference. libname myXL xlsx 'path to xlsx file'; proc copy in=myXL out=work; run; This will not …

  9. excel - VBA Dictionary References - Stack Overflow

    Jul 15, 2018 · I, too, had plenty of years experience with VBA before I finally figured out VBA Dictionaries (and Collections). I'm not fully clear on your question, and therefore this may not …

  10. Efficient way to concatenate excel files - Stack Overflow

    Aug 26, 2022 · Put all excel workbooks (i.e. excel files) to be processed into a folder (see variable paths). Get the paths of all workbooks in that folder using glob.glob. Return all worksheets of …