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;
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!
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.