BookmarkSubscribeRSS Feed
nevennett
Fluorite | Level 6

I've tried the following code for SAS ondemand and I'm getting an error. 

 

data ab2;
set ab1;
lead_num = input(lead, 4.);
run;

 

and if comes up with an error saying that the input statement is incorrect. 

 

 

What do I need to do?

2 REPLIES 2
PeterClemmensen
Tourmaline | Level 20

What does your data looks like?

 

What does the log say?

Ksharp
Super User

data ab2;
set ab1;
lead_num = input(lead, ?? best32.);
run;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 362 views
  • 0 likes
  • 3 in conversation