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

Hello

I want to create a data set .

What is the best way to do it please?

I don't get the values all values and all rows.

There should be 42 rows  and 5 columns

Data tbl;
input field $ @1 PCT @7 Amnt @10  Factor @17	Reduce @20;
cards;
max   .  .             1          -4490
max   30 20000  1          -2461
max	  40 20000  1          -2981
max	  50 20000  1          -3433
max	  30 50000  1          -3621
max	  40 50000  1          -3843
max	  50 50000  1          -4039
max   .  .             1.1       -4157
max	  30 20000  1.1       -2306
max	  40 20000  1.1       -2788
max	  50 20000  1.1       -3202
max	  30 50000  1.1       -3361
max	  40 50000  1.1       -3568
max	  50 50000  1.1        -3749
max   .  .      1.2	        -3858
max	  30 20000  1.2        -2161
max	  40 20000  1.2        -2607
max	  50 20000  1.2        -2988
max	  30 50000  1.2        -3125
max	  40 50000  1.2        -3319
max	  50 50000  1.2        -3486
S_Max .  .           1           -5114
S_Max 30 20000	1      -2697
S_Max 40 20000	1      -3281
S_Max 50 20000	1      -3802
S_Max 30 50000	1      -4094
S_Max 40 50000	1      -4342
S_Max 50 50000	1      -4564
S_Max .	 .             1.1    -4804
S_Max 30 20000	1.1	-2573
S_Max 40 20000	1.1	-3122
S_Max 50 20000	1.1	-3606
S_Max 30 50000	1.1	-3859
S_Max 40 50000	1.1	-4093
S_Max 50 50000	1.1	-4301
S_Max .  .		1.2	-4514
S_Max 30 20000	1.2	-2449
S_Max 40 20000	1.2	-2964
S_Max 50 20000	1.2	-3415
S_Max 30 50000	1.2	-3637
S_Max 40 50000	1.2	-3857
S_Max 50 50000	1.2	-4052
;
run;
1 ACCEPTED SOLUTION
2 REPLIES 2
Ronein
Meteorite | Level 14

Great and thank you!!

Data tbl;
 INFILE DATALINES DLM=',';
input field $ PCT Amnt   Factor	Reduce ;
cards;
max,.,.,1,-4490
max,30,20000,1,-2461
max,40,20000,1,-2981
max,50,20000,1,-3433
max,30,50000,1,-3621
max,40,50000,1,-3843
max,50,50000,1,-4039
max,.,.,1.1,-4157
max,30,20000,1.1,-2306
max,40,20000,1.1,-2788
max,50,20000,1.1,-3202
max,30,50000,1.1,-3361
max,40,50000,1.1,-3568
max,50,50000,1.1,-3749
max,.,.,1.2,-3858
max,30,20000,1.2,-2161
max,40,20000,1.2,-2607
max,50,20000,1.2,-2988
max,30,50000,1.2,-3125
max,40,50000,1.2,-3319
max,50,50000,1.2,-3486
S_Max,.,.,1,-5114
S_Max,30,20000,1,-2697
S_Max,40,20000,1,-3281
S_Max,50,20000,1,-3802
S_Max,30,50000,1,-4094
S_Max,40,50000,1,-4342
S_Max,50,50000,1,-4564
S_Max,.,.,1.1,-4804
S_Max,30,20000,1.1,-2573
S_Max,40,20000,1.1,-3122
S_Max,50,20000,1.1,-3606
S_Max,30,50000,1.1,-3859
S_Max,40,50000,1.1,-4093
S_Max,50,50000,1.1,-4301
S_Max,.,.,1.2,-4514
S_Max,30,20000,1.2,-2449
S_Max,40,20000,1.2,-2964
S_Max,50,20000,1.2,-3415
S_Max,30,50000,1.2,-3637
S_Max,40,50000,1.2,-3857
S_Max,50,50000,1.2,-4052
;
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!
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
  • 2 replies
  • 333 views
  • 0 likes
  • 2 in conversation