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

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 872 views
  • 1 like
  • 4 in conversation