BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
desireatem
Pyrite | Level 9

I wish to ask if I can use a where statement in proc model like this:

Proc model data=A;

where t=1;

V=F(x);

solve x /out=solution;

run;

1 ACCEPTED SOLUTION

Accepted Solutions
RichardinOz
Quartz | Level 8

It is worth a try using the WHERE statement.  SAS supports WHERE in a number of procs so unless it is specifically excluded in the Proc MODEL doco it wil probably work.

Richard temporarily back in OZ

View solution in original post

3 REPLIES 3
Patrick
Opal | Level 21

i haven't seen it this way in the documentation. You can always use below syntax instead:

data=a(where=(t=1))

Tom
Super User Tom
Super User

Did you try it?

I copied this example from the help pages and added a WHERE statement.

proc model data=sashelp.citimon;

where date < '01JAN1990'd ;

   lhur = 1/(a * ip + b) + c;

   fit lhur;

run;

RichardinOz
Quartz | Level 8

It is worth a try using the WHERE statement.  SAS supports WHERE in a number of procs so unless it is specifically excluded in the Proc MODEL doco it wil probably work.

Richard temporarily back in OZ

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 3 replies
  • 553 views
  • 6 likes
  • 4 in conversation