<?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 Pb when I use an informat I defined in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Pb-when-I-use-an-informat-I-defined/m-p/727822#M28227</link>
    <description>&lt;P&gt;hello dear SAS experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used the following Code to define an informat:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;/* Monatsformate für Erfolgsplan 																*/
data monatefp;
length start $2 label 3;
input start label;
datalines;
A 1
B 2
C 3
D 4
E 5
F 6
G 7
H 8
I 9
J 10
K 11
L 12
M 21
N 22
O 23
P 24
Q 25
R 26
S 27
T 28
U 29
V 30
W 31
X 32
Y 33
;
run;
data monatefpf;
set monatefp end=last;
retain fmtname 'Monatefpf' type 'J';
output;
run;
proc format cntlin=Monatefpf fmtlib; run;&lt;/PRE&gt;&lt;P&gt;this Code produced the following informat:&lt;/P&gt;&lt;PRE&gt;                            ----------------------------------------------------------------------------                            
                            |       FORMAT NAME: ERFGPLNF LENGTH:    2   NUMBER OF VALUES:    1        |                            
                            |   MIN LENGTH:   1  MAX LENGTH:  40  DEFAULT LENGTH:   2  FUZZ: STD       |                            
                            |--------------------------------------------------------------------------|                            
                            |START           |END             |LABEL  (VER. V7|V8   19MAR2021:17:30:29)|                            
                            |----------------+----------------+----------------------------------------|                            
                            |               .|               .|33                                      |                            
                            ----------------------------------------------------------------------------                            
                                                                                                                                    
                                                                                                                                    
                            ----------------------------------------------------------------------------                            
                            |                   INFORMAT NAME: @$ERFGPLNF LENGTH: 2                    |                            
                            |   MIN LENGTH:   1  MAX LENGTH:  40  DEFAULT LENGTH:   2  FUZZ:        0  |                            
                            |--------------------------------------------------------------------------|                            
                            |START           |END             |INVALUE(VER. 9.4     19MAR2021:17:52:28)|                            
                            |----------------+----------------+----------------------------------------|                            
                            |A               |A               |1                                       |                            
                            |B               |B               |2                                       |                            
                            |C               |C               |3                                       |                            
                            |D               |D               |4                                       |                            
                            |E               |E               |5                                       |                            
                            |F               |F               |6                                       |                            
                            |G               |G               |7                                       |                            
                            |H               |H               |8                                       |                            
                            |I               |I               |9                                       |                            
                            |J               |J               |10                                      |                            
                            |K               |K               |11                                      |                            
                            |L               |L               |12                                      |                            
                            |M               |M               |21                                      |                            
                            |N               |N               |22                                      |                            
                            |O               |O               |23                                      |                            
                            |P               |P               |24                                      |                            
                            |Q               |Q               |25                                      |                            
                            |R               |R               |26                                      |                            
                            |S               |S               |27                                      |                            
                            |T               |T               |28                                      |                            
                            |U               |U               |29                                      |                            
                            |V               |V               |30                                      |                            
                            |W               |W               |31                                      |                            
                            |X               |X               |32                                      |                            
                            |Y               |Y               |33                                      |                            
                            ----------------------------------------------------------------------------                            
                                                                                                                                    
                                                                                                                                    
                            ----------------------------------------------------------------------------                            
                            |                   INFORMAT NAME: @$MONATEFPF LENGTH: 2                   |                            
                            |   MIN LENGTH:   1  MAX LENGTH:  40  DEFAULT LENGTH:   2  FUZZ:        0  |                            
                            |--------------------------------------------------------------------------|                            
                            |START           |END             |INVALUE(VER. 9.4     19MAR2021:17:57:18)|                            
                            |----------------+----------------+----------------------------------------|                            
                            |A               |A               |1                                       |                            
                            |B               |B               |2                                       |                            
                            |C               |C               |3                                       |                            
                            |D               |D               |4                                       |                            
                            |E               |E               |5                                       |                            
                            |F               |F               |6                                       |                            
                            |G               |G               |7                                       |                            
                            -----------------+----------------+-----------------------------------------                            
                            |                   INFORMAT NAME: @$MONATEFPF LENGTH: 2                   |                            
                            |   MIN LENGTH:   1  MAX LENGTH:  40  DEFAULT LENGTH:   2  FUZZ:        0  |                            
                            |--------------------------------------------------------------------------|                            
                            |START           |END             |INVALUE                         (CONT'D)|                            
                            |----------------+----------------+----------------------------------------|                            
                            |H               |H               |8                                       |                            
                            |I               |I               |9                                       |                            
                            |J               |J               |10                                      |                            
                            |K               |K               |11                                      |                            
                            |L               |L               |12                                      |                            
                            |M               |M               |21                                      |                            
                            |N               |N               |22                                      |                            
                            |O               |O               |23                                      |                            
                            |P               |P               |24                                      |                            
                            |Q               |Q               |25                                      |                            
                            |R               |R               |26                                      |                            
                            |S               |S               |27                                      |                            
                            |T               |T               |28                                      |                            
                            |U               |U               |29                                      |                            
                            |V               |V               |30                                      |                            
                            |W               |W               |31                                      |                            
                            |X               |X               |32                                      |                            
                            |Y               |Y               |33                                      |                            
                            ----------------------------------------------------------------------------                            &lt;/PRE&gt;&lt;P&gt;I Need to use it to transform the variable Monat_O into a numeric Variable and I tried:&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3" color="#000080"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; Erfolgsplan_AG_Gesamt &lt;/FONT&gt;&lt;FONT face="Courier New" size="3" color="#008000"&gt;/*(drop=Monat_O)*/&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3" color="#0000ff"&gt;set&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; Daten4Dashboard1 (&lt;/FONT&gt;&lt;FONT face="Courier New" size="3" color="#0000ff"&gt;keep&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=Monat Monat_O);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*if stufe in ('AG_FIL', 'AG_GESAMT', 'Mitte/Ost') then MARKTREGION_BT = Stufe;&lt;/P&gt;&lt;P&gt;*if stufe in ('AG_FIL', 'AG_GESAMT', 'Mitte/Ost') then NLBEZ_BT = Stufe;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;Monat_test1=input(Monat_O, &lt;/FONT&gt;&lt;FONT face="Courier New" size="3" color="#008080"&gt;$Monatefpf.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;Monat_test2=input(Monat_O, &lt;/FONT&gt;&lt;FONT face="Courier New" size="3" color="#008080"&gt;Monatefpf.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3" color="#000080"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;the result is:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS_EFGP_1.PNG" style="width: 620px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/56180i026D56CBDC01E1A6/image-size/large?v=v2&amp;amp;px=999" role="button" title="SAS_EFGP_1.PNG" alt="SAS_EFGP_1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I have 2 Problems:&lt;/P&gt;&lt;P&gt;- I Need the Monat_test1 or Monat_test2 to be NUMERIC&lt;/P&gt;&lt;P&gt;- I see some Errors using the informat (L =&amp;gt; L instead of 12 for instance)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I solve this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
    <pubDate>Fri, 19 Mar 2021 17:24:50 GMT</pubDate>
    <dc:creator>PierreYvesILY</dc:creator>
    <dc:date>2021-03-19T17:24:50Z</dc:date>
    <item>
      <title>Pb when I use an informat I defined</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Pb-when-I-use-an-informat-I-defined/m-p/727822#M28227</link>
      <description>&lt;P&gt;hello dear SAS experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used the following Code to define an informat:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;/* Monatsformate für Erfolgsplan 																*/
data monatefp;
length start $2 label 3;
input start label;
datalines;
A 1
B 2
C 3
D 4
E 5
F 6
G 7
H 8
I 9
J 10
K 11
L 12
M 21
N 22
O 23
P 24
Q 25
R 26
S 27
T 28
U 29
V 30
W 31
X 32
Y 33
;
run;
data monatefpf;
set monatefp end=last;
retain fmtname 'Monatefpf' type 'J';
output;
run;
proc format cntlin=Monatefpf fmtlib; run;&lt;/PRE&gt;&lt;P&gt;this Code produced the following informat:&lt;/P&gt;&lt;PRE&gt;                            ----------------------------------------------------------------------------                            
                            |       FORMAT NAME: ERFGPLNF LENGTH:    2   NUMBER OF VALUES:    1        |                            
                            |   MIN LENGTH:   1  MAX LENGTH:  40  DEFAULT LENGTH:   2  FUZZ: STD       |                            
                            |--------------------------------------------------------------------------|                            
                            |START           |END             |LABEL  (VER. V7|V8   19MAR2021:17:30:29)|                            
                            |----------------+----------------+----------------------------------------|                            
                            |               .|               .|33                                      |                            
                            ----------------------------------------------------------------------------                            
                                                                                                                                    
                                                                                                                                    
                            ----------------------------------------------------------------------------                            
                            |                   INFORMAT NAME: @$ERFGPLNF LENGTH: 2                    |                            
                            |   MIN LENGTH:   1  MAX LENGTH:  40  DEFAULT LENGTH:   2  FUZZ:        0  |                            
                            |--------------------------------------------------------------------------|                            
                            |START           |END             |INVALUE(VER. 9.4     19MAR2021:17:52:28)|                            
                            |----------------+----------------+----------------------------------------|                            
                            |A               |A               |1                                       |                            
                            |B               |B               |2                                       |                            
                            |C               |C               |3                                       |                            
                            |D               |D               |4                                       |                            
                            |E               |E               |5                                       |                            
                            |F               |F               |6                                       |                            
                            |G               |G               |7                                       |                            
                            |H               |H               |8                                       |                            
                            |I               |I               |9                                       |                            
                            |J               |J               |10                                      |                            
                            |K               |K               |11                                      |                            
                            |L               |L               |12                                      |                            
                            |M               |M               |21                                      |                            
                            |N               |N               |22                                      |                            
                            |O               |O               |23                                      |                            
                            |P               |P               |24                                      |                            
                            |Q               |Q               |25                                      |                            
                            |R               |R               |26                                      |                            
                            |S               |S               |27                                      |                            
                            |T               |T               |28                                      |                            
                            |U               |U               |29                                      |                            
                            |V               |V               |30                                      |                            
                            |W               |W               |31                                      |                            
                            |X               |X               |32                                      |                            
                            |Y               |Y               |33                                      |                            
                            ----------------------------------------------------------------------------                            
                                                                                                                                    
                                                                                                                                    
                            ----------------------------------------------------------------------------                            
                            |                   INFORMAT NAME: @$MONATEFPF LENGTH: 2                   |                            
                            |   MIN LENGTH:   1  MAX LENGTH:  40  DEFAULT LENGTH:   2  FUZZ:        0  |                            
                            |--------------------------------------------------------------------------|                            
                            |START           |END             |INVALUE(VER. 9.4     19MAR2021:17:57:18)|                            
                            |----------------+----------------+----------------------------------------|                            
                            |A               |A               |1                                       |                            
                            |B               |B               |2                                       |                            
                            |C               |C               |3                                       |                            
                            |D               |D               |4                                       |                            
                            |E               |E               |5                                       |                            
                            |F               |F               |6                                       |                            
                            |G               |G               |7                                       |                            
                            -----------------+----------------+-----------------------------------------                            
                            |                   INFORMAT NAME: @$MONATEFPF LENGTH: 2                   |                            
                            |   MIN LENGTH:   1  MAX LENGTH:  40  DEFAULT LENGTH:   2  FUZZ:        0  |                            
                            |--------------------------------------------------------------------------|                            
                            |START           |END             |INVALUE                         (CONT'D)|                            
                            |----------------+----------------+----------------------------------------|                            
                            |H               |H               |8                                       |                            
                            |I               |I               |9                                       |                            
                            |J               |J               |10                                      |                            
                            |K               |K               |11                                      |                            
                            |L               |L               |12                                      |                            
                            |M               |M               |21                                      |                            
                            |N               |N               |22                                      |                            
                            |O               |O               |23                                      |                            
                            |P               |P               |24                                      |                            
                            |Q               |Q               |25                                      |                            
                            |R               |R               |26                                      |                            
                            |S               |S               |27                                      |                            
                            |T               |T               |28                                      |                            
                            |U               |U               |29                                      |                            
                            |V               |V               |30                                      |                            
                            |W               |W               |31                                      |                            
                            |X               |X               |32                                      |                            
                            |Y               |Y               |33                                      |                            
                            ----------------------------------------------------------------------------                            &lt;/PRE&gt;&lt;P&gt;I Need to use it to transform the variable Monat_O into a numeric Variable and I tried:&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3" color="#000080"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; Erfolgsplan_AG_Gesamt &lt;/FONT&gt;&lt;FONT face="Courier New" size="3" color="#008000"&gt;/*(drop=Monat_O)*/&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3" color="#0000ff"&gt;set&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; Daten4Dashboard1 (&lt;/FONT&gt;&lt;FONT face="Courier New" size="3" color="#0000ff"&gt;keep&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=Monat Monat_O);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*if stufe in ('AG_FIL', 'AG_GESAMT', 'Mitte/Ost') then MARKTREGION_BT = Stufe;&lt;/P&gt;&lt;P&gt;*if stufe in ('AG_FIL', 'AG_GESAMT', 'Mitte/Ost') then NLBEZ_BT = Stufe;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;Monat_test1=input(Monat_O, &lt;/FONT&gt;&lt;FONT face="Courier New" size="3" color="#008080"&gt;$Monatefpf.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;Monat_test2=input(Monat_O, &lt;/FONT&gt;&lt;FONT face="Courier New" size="3" color="#008080"&gt;Monatefpf.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3" color="#000080"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;the result is:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS_EFGP_1.PNG" style="width: 620px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/56180i026D56CBDC01E1A6/image-size/large?v=v2&amp;amp;px=999" role="button" title="SAS_EFGP_1.PNG" alt="SAS_EFGP_1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I have 2 Problems:&lt;/P&gt;&lt;P&gt;- I Need the Monat_test1 or Monat_test2 to be NUMERIC&lt;/P&gt;&lt;P&gt;- I see some Errors using the informat (L =&amp;gt; L instead of 12 for instance)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I solve this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Fri, 19 Mar 2021 17:24:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Pb-when-I-use-an-informat-I-defined/m-p/727822#M28227</guid>
      <dc:creator>PierreYvesILY</dc:creator>
      <dc:date>2021-03-19T17:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: Pb when I use an informat I defined</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Pb-when-I-use-an-informat-I-defined/m-p/727834#M28230</link>
      <description>What does Pb stand for? Peanut butter?</description>
      <pubDate>Fri, 19 Mar 2021 17:56:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Pb-when-I-use-an-informat-I-defined/m-p/727834#M28230</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-03-19T17:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Pb when I use an informat I defined</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Pb-when-I-use-an-informat-I-defined/m-p/727836#M28231</link>
      <description>&lt;P&gt;Look up the meaning of the TYPE variable in the CNTLIN dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;J -&amp;gt;&amp;nbsp; Character informat.&lt;/P&gt;
&lt;P&gt;I -&amp;gt; Numeric informat.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Mar 2021 17:58:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Pb-when-I-use-an-informat-I-defined/m-p/727836#M28231</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-03-19T17:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: Pb when I use an informat I defined</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Pb-when-I-use-an-informat-I-defined/m-p/727837#M28232</link>
      <description>Pb = problem</description>
      <pubDate>Fri, 19 Mar 2021 18:02:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Pb-when-I-use-an-informat-I-defined/m-p/727837#M28232</guid>
      <dc:creator>PierreYvesILY</dc:creator>
      <dc:date>2021-03-19T18:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: Pb when I use an informat I defined</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Pb-when-I-use-an-informat-I-defined/m-p/727846#M28238</link>
      <description>&lt;P&gt;Changing it to I, and using it without the $ is important because you've defined both types by now. Or makes sure to test it in a brand new session.&lt;/P&gt;
&lt;P&gt;This works as expected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data monatefp;
length start $2 label 3;
input start label;
datalines;
A 1
B 2
C 3
D 4
E 5
F 6
G 7
H 8
I 9
J 10
K 11
L 12
M 21
N 22
O 23
P 24
Q 25
R 26
S 27
T 28
U 29
V 30
W 31
X 32
Y 33
;
run;
data monatefpf;
set monatefp end=last;
retain fmtname 'testFormat' type 'I';
output;
run;
proc format cntlin=Monatefpf ; run;

data want /*(drop=Monat_O)*/;

set monatefp ;



Monat_test1 = input(start, testFormat.);


run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 19 Mar 2021 18:41:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Pb-when-I-use-an-informat-I-defined/m-p/727846#M28238</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-03-19T18:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: Pb when I use an informat I defined</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Pb-when-I-use-an-informat-I-defined/m-p/727849#M28239</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/281554"&gt;@PierreYvesILY&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The two values in column Monat_O which were left unchanged by your original character informat,&amp;nbsp;'J' and 'L', suggest that in those observations variable Monat_O (length &amp;gt;1, right?) contains more than just these single letters: possibly invisible characters. In the case of &lt;EM&gt;trailing&lt;/EM&gt; additional characters the problem should vanish after changing the type of the informat to numeric (&lt;FONT face="courier new,courier"&gt;type='I'&lt;/FONT&gt;) because the default length is then 1. With &lt;EM&gt;leading&lt;/EM&gt; invisible characters, however, the numeric informat would produce missing numeric values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would identify (&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=leforinforref&amp;amp;docsetTarget=p1h8xtl50tpzthn1u8kp0sji8f60.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;$HEX&lt;EM&gt;w&lt;/EM&gt;. format&lt;/A&gt;) and then remove (e.g., &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=lefunctionsref&amp;amp;docsetTarget=n0fcshr0ir3h73n1b845c4aq58hz.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;COMPRESS function&lt;/A&gt;) the unexpected characters from variable Monat_O in any case.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Mar 2021 18:48:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Pb-when-I-use-an-informat-I-defined/m-p/727849#M28239</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2021-03-19T18:48:02Z</dc:date>
    </item>
  </channel>
</rss>

