BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Hi,

I have a character field containing a mix of numeric and character data (ie. <20 0.555 4500 NA etc etc).

I want to select only numeric data and compare with a similar field for comparison. So I wrote:

IF VERIFY(EDRESULT,' 0123456789.') NE 0 THEN ;
ELSE DO;
IF INPUT(EDRESULT,8.2) < INPUT(EDLORNG,8.2) THEN EDFLAG = 'L';
ELSE IF INPUT(EDRESULT,8.2) > INPUT(EDHIRNG,8.2) THEN EDFLAG = 'H';
END;

But I'm not sure how format I should use to read in these data. Since it contains different decimal points, I can't just use one format (8.2). It gives a mix of correct and incorrect answers when I use this format.

Any idea?

Thank you.
James
2 REPLIES 2
Chevell_sas
SAS Employee
Try using the BEST. format which allows SAS to choose the format providing the most information about the value.
deleted_user
Not applicable
also simply using the informat 8. or 12. or... might be ok. You should not read with a format with decimal points in. If there comes something with decimals it is read ok anyway.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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!

Register now

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