hi I have a table that looks like thi
. City. Market. Sub market
Houston. A. b
NeW York. Q
san fran.
Austin. D.
i have a data step looks like this
ddata report; set report;
if sub market = ( .) then market = sub market;
run;
i shan't the value that is in the maket column an not the word sub market if market is blank as well thN it should default to city value not name city ...thanks again
The coalescec() function will return the first non-missing character value from a list.
data report;
set report;
sub_market=coalescec(sub_market, market, city);
market=coalescec(market, city);
run;
The coalescec() function will return the first non-missing character value from a list.
data report;
set report;
sub_market=coalescec(sub_market, market, city);
market=coalescec(market, city);
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.