BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
Anuz
Quartz | Level 8

Hi,

 

Is there a SAS function to calculate the number of digits in a numeric field ? 

 

For example: I have a roll number numeric field. I want the count to show as below 

 

ROLL NUMBER    COUNT

1234567                 7

12345                     5

1212                       4

 

Thank you 

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

If you're working with integers only, then try the approach in the blog post Compute the number of digits in an integer by @Rick_SAS.

 

data have;
input ROLLNUMBER;
count = ceil(log10(ROLLNUMBER + 1)); 
datalines;
1234567 
12345   
1212    
;

 

Result:

 

ROLLNUMBER count
1234567    7
12345      5
1212       4

 

View solution in original post

3 REPLIES 3
PeterClemmensen
Tourmaline | Level 20

If you're working with integers only, then try the approach in the blog post Compute the number of digits in an integer by @Rick_SAS.

 

data have;
input ROLLNUMBER;
count = ceil(log10(ROLLNUMBER + 1)); 
datalines;
1234567 
12345   
1212    
;

 

Result:

 

ROLLNUMBER count
1234567    7
12345      5
1212       4

 

Anuz
Quartz | Level 8

thank you @PeterClemmensen . That is exactly what I needed. 

Tom
Super User Tom
Super User

If you know the value is an integer (a whole number) then you could just convert it to a string and count the number of digits.

  digits=length(cats(whole_number));

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 992 views
  • 3 likes
  • 3 in conversation