BookmarkSubscribeRSS Feed
arun1234
Calcite | Level 5

data wombat.orderdata;
set wombat.orders;
if orderdate > '05JUN2003'
then bonous = 10;
run;

 

my result contain extra column such as orderdate and also bonous showing as . 

2 REPLIES 2
Reeza
Super User

data wombat.orderdata;
set wombat.orders;
if orderdate > '05JUN2003'  <- You need to refer to a date literal with a d after the quotation mark '05Jun2003'd
then bonous = 10; <- If orderdate is less than or equal to date what do you want to happen with bonous variable?
run;

 


@arun1234 wrote:

 

my result contain extra column such as orderdate and also bonous showing as . 


 

I bet your log has the answer. Read it. 

bonous is a variable you're trying to create, the condition is never true and you have no alternative value so it's set to missing.

Astounding
PROC Star

If you are getting an extra column, it means that ORDERDATE is the wrong spelling for your existing variable.  Find the proper spelling and try again (following Reeza's advice to add the "d" to the date literal).

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

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
  • 575 views
  • 0 likes
  • 3 in conversation