BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
sfmeier
Obsidian | Level 7

In a macro I am using the code
------------------------------

%SYSFUNC(catx(_,&number ,%SYSFUNC(Intnx(qtr, &dvar, 0, end), DDMMYYP10.)))

-----------------------------

to create the output

-----------------------------

5_30.06.2013

-----------------------------

How can I create a dynamic leading zero?

1 ACCEPTED SOLUTION

Accepted Solutions
data_null__
Jade | Level 19

Looks like CATX is treating the number like a number.  You don't need CATX.

 

405 %let number=5;

406 %let dvar=%sysfunc(today());

407 %PUT NOTE: %sysfunc(putN(&number,z2))_%SYSFUNC(Intnx(qtr, &dvar, 0, end), DDMMYYP10.);

NOTE: 05_30.06.2012

View solution in original post

5 REPLIES 5
Astounding
PROC Star

Try replacing &number with:

%sysfunc(putn(&number, z2))

Messy, but it should work.

This assumes that &number is always less than 100, and you only want a leading zero when &number < 10.

sfmeier
Obsidian | Level 7

I tried exactly that, but it does not work 😞

Astounding
PROC Star

OK, you actually made me test my code.  It does work for me.  There are subtle parts of the syntax, such as PUTN instead of PUT, and no period at the end of the format name.  Can you post what you coded, and the results?

This is what worked:

%let n=5;

%let newn = %sysfunc(putn(&n, z2));

data_null__
Jade | Level 19

Looks like CATX is treating the number like a number.  You don't need CATX.

 

405 %let number=5;

406 %let dvar=%sysfunc(today());

407 %PUT NOTE: %sysfunc(putN(&number,z2))_%SYSFUNC(Intnx(qtr, &dvar, 0, end), DDMMYYP10.);

NOTE: 05_30.06.2012

sfmeier
Obsidian | Level 7

Ok, cool, thx! It works perfectly without catx... 🙂

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