<?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: ERROR 22-322: Syntax error, expecting one of the following: a format name, =. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ERROR-22-322-Syntax-error-expecting-one-of-the-following-a/m-p/627467#M185252</link>
    <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/312493"&gt;@Debugger&lt;/a&gt;&amp;nbsp; Is the erroneous semicolon here?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;From WORK.Fokus t1;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 26 Feb 2020 13:19:29 GMT</pubDate>
    <dc:creator>novinosrin</dc:creator>
    <dc:date>2020-02-26T13:19:29Z</dc:date>
    <item>
      <title>ERROR 22-322: Syntax error, expecting one of the following: a format name, =.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-22-322-Syntax-error-expecting-one-of-the-following-a/m-p/627466#M185251</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Probably pretty simple mistake.&lt;/P&gt;&lt;P&gt;Got the following Error. Sth seems to be wrong with my "Format".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MPRINT(LOOP): Create Table Abgleich24 AS Select "TRAG" AS Schau_Stichwort_ID length=30, "BEISPIEL" AS Tabelle&lt;/P&gt;&lt;P&gt;length=30, "BEISPIEL_BETR" AS Feld length=30, t2.Schau_NM length=30,&amp;nbsp;BEISPIEL_BEITR AS&amp;nbsp;BEITR_NM length=30&lt;/P&gt;&lt;P&gt;Format 'BEITR_NM' = $6 From t1;&lt;/P&gt;&lt;P&gt;ERROR 22-322: Syntax error, expecting one of the following: a format name, =.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Proc SQL;

Create Table Abgleich&amp;amp;i AS

 Select "&amp;amp;&amp;amp;Schau&amp;amp;i" AS Schau_ID length=30, 

"&amp;amp;&amp;amp;Tabelle&amp;amp;i" AS Tabelle length=30,

"&amp;amp;&amp;amp;Feld&amp;amp;i" AS Feld length=30, 

 t2.Schau_NM length=30, 

 &amp;amp;&amp;amp;Feld&amp;amp;i AS Schau_NM length=30

 Format 'Schau_NM' = $6

 

From WORK.Fokus t1;

 Left join work.Fokus_Schau t2 ON (t1.&amp;amp;&amp;amp;Feld&amp;amp;i = t2.Schau_NM);

 

Quit;



%End;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Feb 2020 13:16:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-22-322-Syntax-error-expecting-one-of-the-following-a/m-p/627466#M185251</guid>
      <dc:creator>Debugger</dc:creator>
      <dc:date>2020-02-26T13:16:55Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 22-322: Syntax error, expecting one of the following: a format name, =.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-22-322-Syntax-error-expecting-one-of-the-following-a/m-p/627467#M185252</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/312493"&gt;@Debugger&lt;/a&gt;&amp;nbsp; Is the erroneous semicolon here?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;From WORK.Fokus t1;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 26 Feb 2020 13:19:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-22-322-Syntax-error-expecting-one-of-the-following-a/m-p/627467#M185252</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2020-02-26T13:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR 22-322: Syntax error, expecting one of the following: a format name, =.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-22-322-Syntax-error-expecting-one-of-the-following-a/m-p/627468#M185253</link>
      <description>&lt;PRE&gt;BEISPIEL_BEITR AS BEITR_NM length=30 Format 'BEITR_NM' = $6 From t1;&lt;/PRE&gt;
&lt;P&gt;should say&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;BEISPIEL_BEITR AS BEITR_NM length=30 Format = $6. From t1;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;please note the dot after $6&lt;/P&gt;</description>
      <pubDate>Wed, 26 Feb 2020 13:27:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-22-322-Syntax-error-expecting-one-of-the-following-a/m-p/627468#M185253</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-02-26T13:27:44Z</dc:date>
    </item>
  </channel>
</rss>

