BookmarkSubscribeRSS Feed
goliPSU
Calcite | Level 5

Hi,

I am getting this error message in IML when I am ready to use the data:

data UTIL_WHOLESALE;

set sqldb3.utilshare_wholesale_02;

proc sort; by cCom;

run;

proc iml;

/* GET DATA */

    use UTIL_WHOLESALE;

    read all var{elec_w} into elec_w;

    read all var{fuel_w} into fuel_w;

Error is in using the UTIL_WHOLESALE;

1199  /* GET DATA */

1200

1201      use UTIL_WHOLESALE;

          ---

          180

ERROR 180-322: Statement is not valid or it is used out of proper order.

Any thoughts!

3 REPLIES 3
Rick_SAS
SAS Super FREQ

That's the kind of error you would get if you omit the PROC IML statement.

The syntax you've posted seems to be correct. The following works for me. See if you can reproduce the error with some data set in the SASHELP library:

data UTIL_WHOLESALE;

set sashelp.class;

proc sort; by age;

run;

proc iml;

/* GET DATA */

use UTIL_WHOLESALE;

read all var{height} into height;

read all var{weight} into weight;

goliPSU
Calcite | Level 5

using the SASHELP library it does work without any error! but using my own data still giving this error:-(

Rick_SAS
SAS Super FREQ

Try PROC CONTENTS or PROC PRINT. Maybe the data is corrupted?

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

Multiple Linear Regression in SAS

Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.

Find more tutorials on the SAS Users YouTube channel.

From The DO Loop
Want more? Visit our blog for more articles like these.
Discussion stats
  • 3 replies
  • 1052 views
  • 0 likes
  • 2 in conversation