BookmarkSubscribeRSS Feed
RickGNYC
Calcite | Level 5

Hello,

 

I'm interested in creating a do loop while a macro variable shows there is a error grater than 0.

I'm setting the macro variable as the result of a proc sql query.

here what my code look like:

 

 

%Macro MacroSample(RL=)

%let TableName1 = "1&RL. Table1Name"n;

%let TableName2 = "2&RL. Table2Name"n;

PROC SQL;

CREATE TABLE WORK.&tablename2. AS

SELECT

(SUM(t1.'Connection Difference'n)) AS 'Connection Difference'n

 Into : CheckFlag

FROM WORK.&tablename1. t1;

Where t1.Field1 = &RL.;

%Let CheckFlag = &CheckFlag;

 

QUIT;

/* Macro Begins if Connection Mismaches Fails */

%Do %while (&CheckFlag. >0);

 

/* Begin loop by updating the original table until sum of error is 0*/

PROC SQL;

CREATE TABLE WORK.&tablename1. AS

SELECT

Libref1.Field1,

Libref1.Field2

Calculation1 AS 'Connection Difference'n

FROM WORK.&TableName1. t1;

 QUIT;

 CREATE TABLE WORK.&tablename2. AS

SELECT

(SUM(t1.'Connection Difference'n)) AS 'Connection Difference'n

 Into : CheckFlag

FROM WORK.&tablename1. t1;

%Let CheckFlag = &CheckFlag;

 

%End

%Mend MacroSample;

%MacroSample(RL= "Low")

1 REPLY 1
Astounding
PROC Star

What is the question you are trying to ask?

 

If you are looking for where the errors lie, here is a list for starters.

 

The %MACRO statement is missing a semicolon.

 

The final %END statement is also missing a semicolon.

 

The final PROC SQL is missing a QUIT statement.

 

The first PROC SQL has an extra semicolon.  (The WHERE clause should be part of the SELECT statement, not a separate statement.)

 

Calling the macro with "Low" as the value for &RL gives you incorrect table names, such as  "1"Low" Table1Name"n  Given that you call the macro without quotes around "Low", you would have to change the WHERE clause:

 

Where t1.Field1 = "&RL.";

 

What in the world is Libref1?  Do  you mean t1, such as t1.Field1 ?

 

Of course, there may be more.  That's all that jumped out at first glance.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 2292 views
  • 0 likes
  • 2 in conversation