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).

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

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

Browse our catalog!

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