BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
BrahmanandaRao
Lapis Lazuli | Level 10

Hi Guys 

Good Evening,

I have 10 records in a dataset how to insert a 3.5 value in 4th place

 

 

 

Regards,

Anand

1 ACCEPTED SOLUTION

Accepted Solutions
novinosrin
Tourmaline | Level 20

 

data want;

set have;

if _n_=4 then value=3.5;

run;

 

View solution in original post

4 REPLIES 4
novinosrin
Tourmaline | Level 20

HI @BrahmanandaRao   Can you please post sample data of your input and the expected output. Thank you!

BrahmanandaRao
Lapis Lazuli | Level 10

Hi  

i want output like below

 

0-10       0.5
10-20     1.5
20-30     2.5
30-40
40-50     4.5
50-60     5.5
60-70     6.5
70-80     7.5
80-90     8.5
90-100   9.5

 

 

 

 

 

novinosrin
Tourmaline | Level 20

 

data want;

set have;

if _n_=4 then value=3.5;

run;

 

BrahmanandaRao
Lapis Lazuli | Level 10

Thank you for your support 

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
  • 4 replies
  • 552 views
  • 1 like
  • 2 in conversation