This means that your variable var is of type character (Maxim 3: Know Your Data!), so SAS thinks you mis-spelled the format name.
This means that your variable var is of type character (Maxim 3: Know Your Data!), so SAS thinks you mis-spelled the format name.
Or some ugly code and not actually recommended unless you are looking for an obfuscation of code award using just character functions.
data example; length x $ 6; x='23'; x= cats(repeat('0',6-length(x)-1),x); run;
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Early bird rate extended! Save $200 when you sign up by March 31.
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.
Ready to level-up your skills? Choose your own adventure.