<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: how to load the put format? ! ERROR 48-59: The format $Z was not found or could not be loaded. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-load-the-put-format-ERROR-48-59-The-format-Z-was-not/m-p/940578#M369171</link>
    <description>&lt;P&gt;This means that your variable var is of type character (Maxim 3: Know Your Data!), so SAS thinks you mis-spelled the format name.&lt;/P&gt;</description>
    <pubDate>Fri, 23 Aug 2024 08:58:02 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2024-08-23T08:58:02Z</dc:date>
    <item>
      <title>how to load the put format? ! ERROR 48-59: The format $Z was not found or could not be loaded.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-load-the-put-format-ERROR-48-59-The-format-Z-was-not/m-p/940576#M369170</link>
      <description>Simple use put function, varx=put(var, z6.); 

it complains. How to load the format?!</description>
      <pubDate>Fri, 23 Aug 2024 07:51:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-load-the-put-format-ERROR-48-59-The-format-Z-was-not/m-p/940576#M369170</guid>
      <dc:creator>hellohere</dc:creator>
      <dc:date>2024-08-23T07:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: how to load the put format? ! ERROR 48-59: The format $Z was not found or could not be loaded.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-load-the-put-format-ERROR-48-59-The-format-Z-was-not/m-p/940578#M369171</link>
      <description>&lt;P&gt;This means that your variable var is of type character (Maxim 3: Know Your Data!), so SAS thinks you mis-spelled the format name.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Aug 2024 08:58:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-load-the-put-format-ERROR-48-59-The-format-Z-was-not/m-p/940578#M369171</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-08-23T08:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: how to load the put format? ! ERROR 48-59: The format $Z was not found or could not be loaded.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-load-the-put-format-ERROR-48-59-The-format-Z-was-not/m-p/940588#M369174</link>
      <description>Since VAR is already character, you can replace it without needing to create VARX.&lt;BR /&gt;&lt;BR /&gt;var = put ( input(var, 6.), z6.);</description>
      <pubDate>Fri, 23 Aug 2024 11:24:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-load-the-put-format-ERROR-48-59-The-format-Z-was-not/m-p/940588#M369174</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2024-08-23T11:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: how to load the put format? ! ERROR 48-59: The format $Z was not found or could not be loaded.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-load-the-put-format-ERROR-48-59-The-format-Z-was-not/m-p/940618#M369184</link>
      <description>&lt;P&gt;Or some ugly code and not actually recommended unless you are looking for an obfuscation of code award using just character functions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data example;
   length x $ 6;
   x='23';
   x= cats(repeat('0',6-length(x)-1),x);
run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Aug 2024 13:57:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-load-the-put-format-ERROR-48-59-The-format-Z-was-not/m-p/940618#M369184</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-08-23T13:57:34Z</dc:date>
    </item>
  </channel>
</rss>

