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;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.