Have you ever linked SAS code, If so, describe the link and
any required statements used to either process the code or
the step itself?

Answer Posted / ganesh

The link statement tells sas to jump immediately to the
statement label that is indicated inthe label statement and
to continue executing.

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Tell me more about the parameters in macro? : sas-macro

582


what do the pad and dim functions do? : Sas programming

555


for report generation which one you used proc report or data_null_?

6557


What are symget and symput? : sas-macro

714


what are 5 ways to perform a table lookup in sas? : Sas-administrator

753






why a stop statement is needed for the point= option on a set statement?

614


What is proc sort?

710


Hello, I have PROC SQLs results group by 3 fields and I use SUM and COUNT functions in SQL. The problem is when I try to display my result with PROC TABULATE. I am getting very big numbers. I believe I make a mistake some where in Tabulate. Here is my Proc Tabulate. PROC TABULATE DATA=OUT04_05 FORMAT=12.; CLASS YR CENTRE VISA / PRELOADFMT EXCLUSIVE; VAR NEWUSER FRAUD TRANSFER AUTUSER REISSUE; TABLE CENTRE ALL, (YR ALL)*VISA, (NEWUSER*F=COMMA12. AUTUSER*F=COMMA12. FRAUD*F=COMMA12. TRANSFER*F=COMMA12. REISSUE*F=COMMA12.) / MISSTEXT={LABEL='0'} PRINTMISS RTS=20; FORMAT VISA VISAFMT.; KEYLABEL SUM = ' ' ALL = 'TOTAL'; LABEL YR = 'DATE YEAR' NEWUSER = 'TOTAL NEW ACCT' TRANSFER = 'TOTAL TRANSFER' FRAUD = 'TOTAL FRAUD TRANSFER' AUTUSER = 'TOTAL AUTH USERS' REISSUE = 'TOTAL REISSUE'; When I code it like : NEWUSER*N*F=COMMA12. AUTUSER*N*F=COMMA12. I get same amount numbers but to find a NEWUSER I use COUNT(*) and to find AUTUSER I use SUM(xxxx) function so both result shouldn’t be the same my problem is in this point. Could you tell me where the problem in code is. How can I display my result? TX.

1766


If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro

588


How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?

1568


what are the types of interactive display types? : Sas-bi

641


what are the best practices to process the large data sets in sas programming? : Sas-administrator

529


Explain the purpose of substr functions in sas programming.

554


What commands are used in the case of including or excluding any specific variables in the data set?

581


How to specify variables to be processed by the freq procedure?

606