BookmarkSubscribeRSS Feed
MelissaN
Obsidian | Level 7

I would like to concatenate 2 variables and format as A - B.

I used cats(A,' - ', B), but the result was A-B (no space between the letters and the dash).

I also tried cats(A, ' ' , '-', ' ', B), but it still returned A-B

Is there any way to add a space between them?

Any help is greatly appreciated.

2 REPLIES 2
novinosrin
Tourmaline | Level 20

Try



catx('  -  ',A,B)
ballardw
Super User

From the documentation for CATS:

Removes leading and trailing blanks, and returns a concatenated character string.

 

 

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!
Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 15543 views
  • 4 likes
  • 3 in conversation