BookmarkSubscribeRSS Feed
Andalusia
Obsidian | Level 7

This is my current dataset (an example so you can reproduce my case, the real one is much bigger):

data have;
infile datalines truncover;
input type $ model $;
datalines;
XX-1 Light
XX-2 Heavy
XX-3 Heavy
XX-4 Heavy
XX-5 Slim
XX-6 Light
XX-7 Heavy
;

I want to add two lines of data to it:

XX-8 Light
XX-9 Slim

 

1 REPLY 1
Kurt_Bremser
Super User

Create a new dataset, and append it:

data have;
infile datalines truncover;
input type $ model $;
datalines;
XX-1 Light
XX-2 Heavy
XX-3 Heavy
XX-4 Heavy
XX-5 Slim
XX-6 Light
XX-7 Heavy
;

data new;
infile datalines truncover;
input type $ model $;
datalines;
XX-8 Light
XX-9 Slim
;

proc append
  base=have
  data=new
;
run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 817 views
  • 0 likes
  • 2 in conversation