SAS Enterprise Guide

Desktop productivity for business analysts and programmers
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
jos283
Fluorite | Level 6

As part of a large data set, 2 of my columns contain dates that basically represent the same thing, and they both have missing data in different rows.

 

For example:

Column A      Column B     Date_Start   Date_Begin    Column E

                                              1/1/15          1/1/15

                                              1/4/15

                                                                  1/6/15

                                              1/7/15

                                              1/9/15          1/9/15

 

How do I combine the Date_Start and Date_Begin columns to replace the blank cells so that I get something like this:

 

Date_Combine

       1/1/15

       1/4/15

       1/6/15

       1/7/15

       1/9/15

 

I've also tried Proc Sql, Proc Format, and simply copying Date_Begin across to Data_Start (seen at the end) but it doesn't seem to be working i.e. If Missing(Date_Start) then Date_Start = Date_Begin

 

Any help with the coding would be appreciated!

1 ACCEPTED SOLUTION

Accepted Solutions
kiranv_
Rhodochrosite | Level 12

coalesce function will do it.

 

proc sql;

select coalesce(Date_Start ,  Date_Begin) as Date_Combine

from yourtable;

quit;

View solution in original post

1 REPLY 1
kiranv_
Rhodochrosite | Level 12

coalesce function will do it.

 

proc sql;

select coalesce(Date_Start ,  Date_Begin) as Date_Combine

from yourtable;

quit;

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

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
  • 7876 views
  • 2 likes
  • 2 in conversation