BookmarkSubscribeRSS Feed
omega1983
Calcite | Level 5

I will pull a spreadsheet each month from an outside source.  Their program requires the following:  Account#

I had been using the following to show the ln_no however I am getting an Account_ unitialized.  This is because the dataset I import in shows Account#.

1.  Is there a way to rename the Account# even though sas evaluates this differently and not as a text

2.  Also the account# needs to be a character and needs to show leading zeros if it is less than 10.  Some of the account numbers show more than 10 (ie 9.4201471E12 or 88089745000)

data loans2;

  length ln_no $10;

  set loans;

  

  if Account__ = . then ln_no = ' ';

else ln_no = put(input(Account__,??10.),z10.);

1 REPLY 1
Scott_Mitchell
Quartz | Level 8

You need to reference the variable as a name literal as it is not a valid SAS name.  Enclose the variable name with quotation marks followed by an N like so Account#"n.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 1 reply
  • 1043 views
  • 0 likes
  • 2 in conversation