BookmarkSubscribeRSS Feed
Nikster
Calcite | Level 5

Hi,

 

I want to enter a "-" after 2 numbers in a column for all numbers.

 

Examples: All numbers in the column are like 1234567, and I want to add "-" after 2 numbers to look like 12-34567

 

Please help.

 

Thanks

5 REPLIES 5
PaigeMiller
Diamond | Level 26

Is your 1234567 a numeric or a character variable? 

--
Paige Miller
Nikster
Calcite | Level 5

Numeric

Astounding
PROC Star
Use a picture format:

proc format;
picture dash 1000000 - 9999999 = '12-34567';
run;

Then print the variable using the format:

format varname dash. ;
Nikster
Calcite | Level 5

I have a column with multiple numbers like -

 

12-34567

78-465697

102-589865

78-56546

 

I just to remove the dash ('-") between the numbers, so it another column (calculated) looks like -

 

1234567

78465697

102589865

7856546

 

Cheers

PGStats
Opal | Level 21

Use the compress() function.

PG

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 5 replies
  • 1365 views
  • 1 like
  • 4 in conversation