Welcome Thanks for coming out Thanks to Wally Thiessen, David Ghan

Slides:



Advertisements
Similar presentations
Using Graphical Score Reports in C 4 Click on the screen or press the right arrow key ( ) on your keyboard to view the next slide. Press the left arrow.
Advertisements

Using Student Manager Function Keys An ACEware Webinar Tuesday, April 1 st 2-3 pm.
6 th Annual Focus Users’ Conference 6 th Annual Focus Users’ Conference Accounts Receivable Presented by: Robert Myers Presented by: Robert Myers.
Integrating Access with the Web and with Other Programs.
Enough really good SAS ® tips to fill a book Arthur Tabachneck, President and CEO, myqna.org.
Getting Started with Windows ® XP 1 Getting Started with Windows ® XP By Robert T. Grauer Maryann Barber.
Salesforce1 Mobile App Jan
A Visual Introduction to PC SAS. Start SAS by double-clicking on the SAS icon...
Portable Software. This program will explain what portable software is, how it can be used, and where it can be found. This is an advanced level technology.
The KPK Excel Macros The textbook authors have written a set of Excel macros An Excel macro carries out statistical calculations or constructs a statistical.
1 2 Today Introductions Web site: oldku.orgoldku.org Next week: Phone service via the Internet Program suggestions for the year? Files & Folders.
COMPREHENSIVE Windows Tutorial 2 Organizing Your Files.
Introduction to VBA. This is not Introduction to Excel We’re going to assume you have a basic level of familiarity with Excel If you don’t, or you need.
What is Yahoo Desktop Search? Yahoo! Desktop Search is an indexing tool that enables you to find any of your files, s, attachments, instant messages.
Chapter 1: Windows XP. Contents of Desktop Lesson 1 (P.4)
LIS508 lecture 5: storage devices Thomas Krichel
I Can… Define basic file management and related terms Identify levels of a file system Identify and explain ways to view files in Windows OS Explain the.
User Guide for Individuals. Starting at crcnetbase.com, you will see the home page, if you are accessing through your university, you will see the university’s.
SAS® Explorer Use and Customization Richard A. DeVenezia.
Microsoft Access Lesson 1 Lexington Technology Center February 11, 2003 Bob Herring On the Web at
Let VRS Work for You! ELUNA Conference 2008 Presenter: Kelly P. Robinson GIL Service Georgia State University
Alice 2.0 Introductory Concepts and Techniques Project 1 Exploring Alice and Object-Oriented Programming.
Family Tree Maker 2006 Unlocking Its Mysteries. Getting Started.
1 Back Up with Each Submit One approach for keeping a dynamic back up copy of your current work.
ME 142 Engineering Computation I Macros. Key Concepts Macro Overview Recording a Macro Running a Macro Editing a Macro.
TASS Meeting Copy and Paste from Excel to SAS September 19th, 2008 Copy and Paste from Excel to SAS Dr. Arthur Tabachneck, Director Data Management with.
How to add pictures or links Tim Wilcock 2 November 2008.
Introduction to SAS Macros Center for Statistical Consulting Short Course April 15, 2004.
®® Microsoft Windows 7 for Power Users Tutorial 3 Managing Folders and Files.
Unit 2—Using the Computer Lesson 9 Windows and File Management.
To Take a Photo of a house and get a Property Profile you start by Clicking on the Take a Photo icon at the bottom of the screen. For Android devices.
Creating Shortcuts On the Desktop. Creating Shortcuts to programs Many programs create their own desktop shortcuts when installed. A desktop icon with.
XP Tutorial 8 New Perspectives on Microsoft Windows XP 1 Microsoft Windows XP Object Linking and Embedding Tutorial 8.
Compiling and running Java programs with BlueJ. Successfully compiled files program files in BlueJ You can tell from the shade of a program icon in BlueJ.
®® Microsoft Windows 7 Windows Tutorial 2 Organizing Your Files.
XP New Perspectives on Microsoft Office Access 2003, Second Edition- Tutorial 8 1 Microsoft Office Access 2003 Tutorial 8 – Integrating Access with the.
BuzzLah iOS Installation/User Guide
Data-information stored in files on the disks and CDs in your computer system Why should we save a file when we create it on the computer?
Career Spot Videos The Menu Bar Easily update your information through these quick links Click on the icons to join us on Facebook & Twitter and get immediate.
SAS ® Global Forum 2014 March Washington, DC Arthur Tabachneck Thornhill, ON Canada Tom Abernathy New York, NY Matt Kastin Penn Valley, PA.
Java IDE Dwight Deugo Nesa Matic
TASS Meeting Quickly Finding Project Code March 13th, 2009 A way to quickly find all of your project code Dr. Arthur Tabachneck Director, Data Management.
3 A Guide to MySQL.
Setting Defaults in Microsoft Word for Accessibility
ClubRunner 101 What is ClubRunner? A web site;
Public Schools of Robeson County
Introduction to Windows
Introduction to Windows Your Name Goes Here. Evolution of Windows Windows 3.1 –First widely used successful version of Windows –Replaced MS-DOS Windows.
DEPARTMENT OF COMPUTER SCIENCE
Microsoft Windows XP Inside Out Second Edition
C# Programming: From Problem Analysis to Program Design
|Fix Gmail Error 2099
3 Macro Storage.
Fall 2017 Questions and Answers (Q&A)
ME 142 Engineering Computation I
JEdit.
Macro Variable’s scope
Microsoft Office Access 2003
Microsoft Office Access 2003
Two methods to observe tutorial
You must log in using both you address and your Full name before proceeding
Stata Basic Course Lab 2.
Two methods to observe tutorial
More to Learn Creating a shortcut
a useful SAS 9.2 feature I wasn’t aware of *
SCORE Tailored Seminars & Workshops: An Overview
Final Thoughts.
Effort Reporting How to CERTIFY IN ECRT.
Two methods to observe tutorial
Welcome to [Webinar Title]
Presentation transcript:

Welcome Thanks for coming out Thanks to Wally Thiessen, David Ghan Pick up agenda, registration, feedback forms Eat lots Fill out forms Feedback from previous meetings Thanks to Wally Thiessen, David Ghan And especially Rupinder Dhillon ( pp Christy Hobley) Annual General Meeting … nominally SAS-funded but not run Need volunteers

Welcome NESUG Last year in Baltimore – lots of fun This year in Portland, Maine SHRUGBus www.nesug.org for details Email me if interested On with the show /*******************C o m m e n t s******************* Arthur S. Tabachneck, Ph.D. Manager Statistical Research and Development Vehicle Information Centre of Canada 240 Duncan Mill Road- Suite 700 Don Mills, Ontario M3B 1Z4 Phone: 416-445-1883 (Ext. 224) *************Explanation of Macro SETSPATH************ The SETSPATH macro identifies the most recently opened SAS file, and stores the file's path (excluding file name and extension) in the global variable PATH4SAS. NOTE: the macro appears to work regardless of whether the file was opened from within the SAS editor, or passed in by a Window's shortcut to SAS The file SASHELP.VEXTFL contains a history of all files that have been opened, with the variable XPATH containing the files' full pathnames (including path, filename and extension). The record with the highest value in the variable FILEREF is selected, and parsed, in order to set PATH4SAS to equal the desired path The Macro Setpath assumes that the file was either opened from within the SAS system editor, or passed into SAS by clicking on the file's icon from Window NT Explorer (outside of either by selecting FILE and then clicking on the most recent file, or by having clicked on the SAS FILE->OPEN menu options) The global variable path4sas is first initialized in order to avoid a system crash in the event that the macro fails **********End- Explanation of Macro SETSPATH********** ********************END of Comments*******************/ %global path4sas; %macro setspath; %let path4sas = 'C:\My Documents\My SAS Files\V8'; data srt999; set sashelp.vextfl; if ( substr ( fileref, 1, 3 ) = "#LN" and upcase ( substr ( reverse ( trim ( left ( xpath ) ) ), 1, 3 ) ) = "SAS" and upcase ( substr ( reverse ( trim ( left ( xpath ) ) ), 5, 8 ) ) ^= "SAS4HTAP" ); run; proc sort data=srt999; by descending fileref; data _null_; set srt999 ( obs = 1 ); a = reverse ( trim ( left ( xpath ) ) ); b = '\'; c = index ( a, b ); path4sas = reverse ( substr ( reverse ( trim ( left ( xpath ) ) ), c ) ); call symput ( 'path4sas', trim ( left ( lowcase ( path4sas ) ) ) ); %mend setspath ; %setspath