Hi,
I have a large number of columns and rows.
I want to delete a row of data if one specific variable is missing (FIRMID) which is a character variable
I tried the following but it didn't seem to work
data want;
set have;
if FIRMID = " " then delete;
run;
Any help appreciated
Your code should work, unless FIRMID contains non printable characters. Try this test instead
if notspace(FIRMID)=0 then delete;
PG
Your code should work, unless FIRMID contains non printable characters. Try this test instead
if notspace(FIRMID)=0 then delete;
PG
Did you try using the MISSING function?
if missing(firmid) then delete;
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.