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;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.