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

Hello,

 

I would like to know how to initialize selected variables to zero to replace missing value by zero in proc sql create table

 

In the example below, I would like to have missing(web) and missing(internet) set to zero.

How is it possible to do that in a pro sql procedure?

Regards,

 

proc sql ;

create table internet as

select A.id, A.class, A.date,A.performer,A.title,A.category, A.web, B.internet

from dataset1 A full join

dataset2 B

on A.id=B.id

quit;

1 ACCEPTED SOLUTION

Accepted Solutions
LinusH
Tourmaline | Level 20

Use the coalesce function.

Data never sleeps

View solution in original post

1 REPLY 1
LinusH
Tourmaline | Level 20

Use the coalesce function.

Data never sleeps

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

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
  • 1384 views
  • 1 like
  • 2 in conversation