hi,
I am not able to understand the use of parenthesis ( ) in the following code can any explain it to me.
data temp ( );
set table1 ( ) table2 ( ) table3 ( );
run;
-rahul
In your example they serve no purpose.
Most likely the code was designed to accommodate various options that may need to be included in the brackets via macro variables. If no options are present it would resolve as in your code.
please see the attached original code where I found these parenthesis used at the bottom.
Sorry, I can't access attachments. Consider including full code here or someone else will answer.
The actual code in the attachment is
data LASRLIB.iFinIncomeStatement ( );
set TEMP_LASR_VIEW_6296 ( ) TEMP_LASR_VIEW_6696 ( ) interimTable();
run;
I suspect someone previously just had () for data set options for testing the code, just as to pull in just one record.
These brackets have no function if empty. I was actually not even sure if it's valid SAS syntax but I could execute such code without any issues.
data temp (keep=var1 var2 );
set table1 ( ) table2 ( ) table3 ( );
run;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.