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

DATA EXPER;
INPUT TIME0-TIME4;
DATALINES;
100 200 300 400 500
55 110 130 150 170
;
DATA Minutes;
SET EXPER;
ARRAY TIME[0:4] TIME0 – TIME4;
DO I= 0 TO 4;
TIME[I]= ROUND(TIME[I]/60,.1);
END;
DROP I;
RUN;
PROC PRINT DATA=MINUTES NOOBS;
TITLE “LISTING OF Data set Minutes”;
run;

 

I keep getting the same error regardless if i change the number of variables. 
'Too few variables defined for the dimension(s) specified for the array '- is the error I keep getting. Does anyone have any suggestions as what could be wrong in the code?

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

When I pasted your code into my editor this line

ARRAY TIME[0:4] TIME0 – TIME4;

shows the dash like characer as a box drawing character.

Try retyping the dash with the one on your keyboard.

This kind of character change happens when copying from documents that are not plain text such as Word, which will "helpfully" change some characters.

 

 

 

 

View solution in original post

2 REPLIES 2
ballardw
Super User

When I pasted your code into my editor this line

ARRAY TIME[0:4] TIME0 – TIME4;

shows the dash like characer as a box drawing character.

Try retyping the dash with the one on your keyboard.

This kind of character change happens when copying from documents that are not plain text such as Word, which will "helpfully" change some characters.

 

 

 

 

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!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 2 replies
  • 7465 views
  • 0 likes
  • 2 in conversation