<?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: Untranspose macro error in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Untranspose-macro-error/m-p/578814#M164231</link>
    <description>It's not usually one you need to worry about. The log usually does a good job of indicating where the error is. Try running it with the macro debug options turned on and post error and the few lines in the log before and after.&lt;BR /&gt;&lt;BR /&gt;options mprint symbolgen mlogic;&lt;BR /&gt;&lt;BR /&gt;MLOGIC can make the log cumbersome so only use it if needed.</description>
    <pubDate>Fri, 02 Aug 2019 20:07:13 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-08-02T20:07:13Z</dc:date>
    <item>
      <title>Untranspose macro error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Untranspose-macro-error/m-p/578806#M164225</link>
      <description>&lt;P&gt;Hello, I am trying to use Dr. Tabachneck's untranspose macro but when setting it up, I continue to come across the following error message multiple times:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE 49-169: The meaning of an identifier after a quoted string might change in a future SAS release. Inserting white space&lt;BR /&gt;between a quoted string and the succeeding identifier is recommended.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I entered white space between each quoted string and succeeding identifier but it still occurs. Has anyone come across this issue with this macro and if so, any advice to rectify it? I am running Enterprise Guide if that may make a difference.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2019 19:28:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Untranspose-macro-error/m-p/578806#M164225</guid>
      <dc:creator>asouth_neph</dc:creator>
      <dc:date>2019-08-02T19:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: Untranspose macro error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Untranspose-macro-error/m-p/578814#M164231</link>
      <description>It's not usually one you need to worry about. The log usually does a good job of indicating where the error is. Try running it with the macro debug options turned on and post error and the few lines in the log before and after.&lt;BR /&gt;&lt;BR /&gt;options mprint symbolgen mlogic;&lt;BR /&gt;&lt;BR /&gt;MLOGIC can make the log cumbersome so only use it if needed.</description>
      <pubDate>Fri, 02 Aug 2019 20:07:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Untranspose-macro-error/m-p/578814#M164231</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-08-02T20:07:13Z</dc:date>
    </item>
    <item>
      <title>Re: Untranspose macro error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Untranspose-macro-error/m-p/578815#M164232</link>
      <description>&lt;P&gt;The NOTE, &lt;STRONG&gt;not an error&lt;/STRONG&gt;, would likely require seeing the exact code. SAS has several special value types such as date, time, datetime and name literals that all use a quoted string followed by a special character. Example: '01JAN2019'd is treated as a date value. "12:15:20"t is a time value, "external database var"n indicates a name literal to allow referencing fields in external databases that allow characters ,such as spaces, that SAS does not allow in variable names.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Without code and or data it is hard to guess what might actually be creating such a string.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could try setting: options mprint; and then rerun the macro code. The option will display all of the generated text in the log. The note should appear closer to the generated text and should allow determining the exact statement causing the note. Whether it could be adjusted to prevent the note depends on the actual code.&lt;/P&gt;
&lt;P&gt;Remember to set options noprint; afterward to turn of the generated text after you have it corrected.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2019 20:11:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Untranspose-macro-error/m-p/578815#M164232</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-08-02T20:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: Untranspose macro error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Untranspose-macro-error/m-p/578890#M164261</link>
      <description>&lt;P&gt;Calling&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13711"&gt;@art297&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Aug 2019 11:36:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Untranspose-macro-error/m-p/578890#M164261</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-08-03T11:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: Untranspose macro error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Untranspose-macro-error/m-p/578902#M164266</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;: I responded directly to the OP, yesterday, after receiving the same question via email. My response, though, didn't add anything beyond what was mentioned already in this thread.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here was my response:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;You'll have to tell me more regarding what brought on the note. You said it came up in "setting up the macro." Send me a copy of the macro you tried to "setup" and precisely what "setting up" entailed.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Yes, I'm well familiar with the warning message, but don't think that anything in the macro would cause it to occur.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Art, CEO, AnalystFinder.com&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Sat, 03 Aug 2019 13:00:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Untranspose-macro-error/m-p/578902#M164266</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2019-08-03T13:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: Untranspose macro error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Untranspose-macro-error/m-p/579022#M164310</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/283870"&gt;@asouth_neph&lt;/a&gt;&amp;nbsp;: You haven't provided any additional details, as yet, but I did think of something that might be at the root of your problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Prior to trying to compile the macro, you may have run something that had a left over unbalanced quote. You would have received a warning but, if you didn't restart SAS, that quote would remain unbalanced with anything you ran. That warning often precedes the note you mentioned.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Restart SAS and try again with the original macro and let us know if the problem persists.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Aug 2019 17:29:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Untranspose-macro-error/m-p/579022#M164310</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2019-08-04T17:29:25Z</dc:date>
    </item>
  </channel>
</rss>

