<?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 monthly data format in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616055#M8640</link>
    <description>&lt;DIV&gt;please , I want to change format&amp;nbsp; my data,&amp;nbsp; monthly,I Imprt it from stata program ,&amp;nbsp; start from 2016m1&amp;nbsp; ,&amp;nbsp; &amp;nbsp;2016m2&amp;nbsp; ,&amp;nbsp; &amp;nbsp;2016m3&amp;nbsp; &amp;nbsp; &amp;nbsp;.....&amp;nbsp; &amp;nbsp;. to 2019m12 . ,It is&amp;nbsp; &amp;nbsp; &amp;nbsp;48 value , the date variable&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;name,&amp;nbsp; "month"&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;the data is gold price and silver price my application on VARMAX on SAS on deamond academic . I&amp;nbsp; need your help . with many thanks ,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
    <pubDate>Wed, 08 Jan 2020 20:49:29 GMT</pubDate>
    <dc:creator>SystemsasdD2019</dc:creator>
    <dc:date>2020-01-08T20:49:29Z</dc:date>
    <item>
      <title>monthly data format</title>
      <link>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616055#M8640</link>
      <description>&lt;DIV&gt;please , I want to change format&amp;nbsp; my data,&amp;nbsp; monthly,I Imprt it from stata program ,&amp;nbsp; start from 2016m1&amp;nbsp; ,&amp;nbsp; &amp;nbsp;2016m2&amp;nbsp; ,&amp;nbsp; &amp;nbsp;2016m3&amp;nbsp; &amp;nbsp; &amp;nbsp;.....&amp;nbsp; &amp;nbsp;. to 2019m12 . ,It is&amp;nbsp; &amp;nbsp; &amp;nbsp;48 value , the date variable&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;name,&amp;nbsp; "month"&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;the data is gold price and silver price my application on VARMAX on SAS on deamond academic . I&amp;nbsp; need your help . with many thanks ,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Wed, 08 Jan 2020 20:49:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616055#M8640</guid>
      <dc:creator>SystemsasdD2019</dc:creator>
      <dc:date>2020-01-08T20:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: monthly data format</title>
      <link>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616058#M8641</link>
      <description>&lt;P&gt;It would help us greatly if you could format your question in a readable way.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You also say you want to change the format of your data, but you don't show any data and you don't say what the end result should be. We need to know these things in order to be able to assist.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2020 20:56:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616058#M8641</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-01-08T20:56:20Z</dc:date>
    </item>
    <item>
      <title>Re: monthly data format</title>
      <link>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616075#M8642</link>
      <description>Please show what you have as input, what you want as output and anything you've tried so far. Please post your data using the code blocks and use full sentences whenever possible.</description>
      <pubDate>Wed, 08 Jan 2020 21:22:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616075#M8642</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-01-08T21:22:36Z</dc:date>
    </item>
    <item>
      <title>Re: monthly data format</title>
      <link>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616083#M8643</link>
      <description>&lt;P&gt;As far as I know, SAS doesn't provide an informat to read such fields directly. If you are looking for a way to read dates in the YYYYmMM format, you would have to use something like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
str = "2019m2";
date = input (cats(translate(str,"-","m"),"-1"), yymmdd10.);
format date yymmdd10.;
run;

proc print; run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 08 Jan 2020 21:56:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616083#M8643</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2020-01-08T21:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: monthly data format</title>
      <link>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616128#M8644</link>
      <description>&lt;P&gt;If I interpret your (very confusing) post correctly, you should look at this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input inmonth $7.;
datalines;
2016m1
2016m2
2019m12
;

data want;
set have;
outmonth = input(compress(inmonth,'m'),yymmn6.);
format outmonth yymm7.;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 09 Jan 2020 06:50:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616128#M8644</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-01-09T06:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: monthly data format</title>
      <link>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616159#M8645</link>
      <description>&lt;P&gt;thanks very much for your answer, but I think the data is unclear , I will send my details to be clear to you&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 10:24:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616159#M8645</guid>
      <dc:creator>SystemsasdD2019</dc:creator>
      <dc:date>2020-01-09T10:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: monthly data format</title>
      <link>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616187#M8646</link>
      <description>&lt;PRE&gt;thank you for your answar , I have implemented the program and the result is shown below , &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;data have;&lt;BR /&gt;input inmonth $7.;&lt;BR /&gt;datalines;&lt;BR /&gt;2016m1&lt;BR /&gt;2016m2&lt;BR /&gt;2016m3&lt;BR /&gt;2016m4&lt;BR /&gt;2016m5&lt;BR /&gt;2016m6&lt;BR /&gt;2016m7&lt;BR /&gt;2016m8&lt;BR /&gt;2016m9&lt;BR /&gt;2016m10&lt;BR /&gt;2016m11&lt;BR /&gt;2016m12&lt;BR /&gt;2017m1&lt;BR /&gt;2017m2&lt;BR /&gt;2017m3&lt;BR /&gt;2017m4&lt;BR /&gt;2017m5&lt;BR /&gt;2017m6&lt;BR /&gt;2017m7&lt;BR /&gt;2017m8&lt;BR /&gt;2017m9&lt;BR /&gt;2017m10&lt;BR /&gt;2017m11&lt;BR /&gt;2017m12&lt;BR /&gt;2018m1&lt;BR /&gt;2018m2&lt;BR /&gt;2018m3&lt;BR /&gt;2018m4&lt;BR /&gt;2018m5&lt;BR /&gt;2018m6&lt;BR /&gt;2018m7&lt;BR /&gt;2018m8&lt;BR /&gt;2018m9&lt;BR /&gt;2018m10&lt;BR /&gt;2018m11&lt;BR /&gt;2018m12&lt;BR /&gt;2019m1&lt;BR /&gt;2019m2&lt;BR /&gt;2019m3&lt;BR /&gt;2019m4&lt;BR /&gt;2019m5&lt;BR /&gt;2019m6&lt;BR /&gt;2019m7&lt;BR /&gt;2019m8&lt;BR /&gt;2019m9&lt;BR /&gt;2019m10&lt;BR /&gt;2019m11&lt;BR /&gt;2019m12&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;data want;&lt;BR /&gt;set have;&lt;BR /&gt;outmonth = input(compress(inmonth,'m'),yymmn6.);&lt;BR /&gt;format outmonth yymm7.;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;but when I implemented the program :&lt;/PRE&gt;&lt;PRE&gt;PROC VARMAX DATA=WORK.IMPORT PRINTALL PLOTS=ALL;&lt;BR /&gt;MODEL LSILVERPRICE LGOLDPRICE/DIF=(LSILVERPRICE(1) LGOLDPRICE(1)) Q=1 METHOD=ML;&lt;BR /&gt;OUTPUT LEAD=25;&lt;BR /&gt;ID MONTH INTERVAL=MONTH;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;An error appears :&lt;BR /&gt;ERROR : Variable month in list does not match type prescribd for this list &amp;nbsp;&lt;/PRE&gt;</description>
      <pubDate>Thu, 09 Jan 2020 13:30:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616187#M8646</guid>
      <dc:creator>SystemsasdD2019</dc:creator>
      <dc:date>2020-01-09T13:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: monthly data format</title>
      <link>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616190#M8647</link>
      <description>&lt;P&gt;I guess that your variable month is of type character.&lt;/P&gt;
&lt;P&gt;From the &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=etsug&amp;amp;docsetTarget=etsug_varmax_syntax10.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;documentation of the VARMAX Procedure&lt;/A&gt;:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The ID statement specifies a variable that identifies observations in the input data set. The datetime variable specified in the ID statement is included in the OUT= data set if the OUTPUT statement is specified. &lt;STRONG&gt;The ID&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN class=" aa-argument"&gt;variable&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;&amp;nbsp;is usually a SAS datetime variable&lt;/STRONG&gt;. The values of the ID variable are extrapolated for the forecast observations based on the value of the INTERVAL= option.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;(emphasis by me)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The ID variable should therefore be numeric; it might be that a date value will also work, but to be sure, you should convert it to a datetime value (count of seconds from 1960-01-01T00:00:00)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Note that my code creates outmonth as a &lt;EM&gt;numeric date&lt;/EM&gt; variable, which can be converted to datetime by using&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;dhms(outmonth,0,0,0)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 13:57:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616190#M8647</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-01-09T13:57:33Z</dc:date>
    </item>
    <item>
      <title>Re: monthly data format</title>
      <link>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616240#M8648</link>
      <description>&lt;P&gt;Sorry , I am a beginner in the SAS program&amp;nbsp; , so how do I implement the conversion from numerical to datetime sas.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 15:50:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616240#M8648</guid>
      <dc:creator>SystemsasdD2019</dc:creator>
      <dc:date>2020-01-09T15:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: monthly data format</title>
      <link>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616275#M8649</link>
      <description>&lt;P&gt;Change your program to:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
set have;
outmonth = dhms(input(compress(inmonth,'m'),yymmn6.), 0,0,0);
format outmonth datetime.;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 09 Jan 2020 18:41:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616275#M8649</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2020-01-09T18:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: monthly data format</title>
      <link>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616337#M8651</link>
      <description>&lt;P&gt;thank you very mach for your answer , but when I implement the program&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;PROC VARMAX DATA=WORK.IMPORT PRINTALL PLOTS=ALL;&lt;BR /&gt;MODEL LSILVERPRICE LGOLDPRICE/DIF=(LSILVERPRICE(1) LGOLDPRICE(1)) Q=1 METHOD=ML;&lt;BR /&gt;OUTPUT LEAD=25;&lt;BR /&gt;ID outmonth INTERVAL=month;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;An error appears :&lt;BR /&gt;ERROR: Variable outmonth not found .&lt;/PRE&gt;</description>
      <pubDate>Thu, 09 Jan 2020 22:02:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616337#M8651</guid>
      <dc:creator>SystemsasdD2019</dc:creator>
      <dc:date>2020-01-09T22:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: monthly data format</title>
      <link>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616339#M8652</link>
      <description>&lt;P&gt;You need to adapt the code to your data. Use variables that exist in your dataset. If you created outmonth in a new dataset, use this dataset in the varmax procedure.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 22:11:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616339#M8652</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-01-09T22:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: monthly data format</title>
      <link>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616378#M8654</link>
      <description>&lt;P&gt;You should refer to the transformed data, not the original version.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2020 04:21:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616378#M8654</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2020-01-10T04:21:09Z</dc:date>
    </item>
    <item>
      <title>Re: monthly data format</title>
      <link>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616524#M8656</link>
      <description>&lt;P&gt;Sory ,my orijinal data (goldprice and silverprice)&amp;nbsp; &amp;nbsp;in table WORK.IMPORT and OUTMONTH created in table WORK.WANT how can I&amp;nbsp; put&amp;nbsp; it them in one table , So I can apply my program PROC VARMA .&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2020 16:10:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616524#M8656</guid>
      <dc:creator>SystemsasdD2019</dc:creator>
      <dc:date>2020-01-10T16:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: monthly data format</title>
      <link>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616814#M8661</link>
      <description>&lt;P&gt;Sory , when I implement this program :An error apear&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc varmax data=WORK.WANT plot(unpack)=(residual model forecasts);&lt;BR /&gt;id OUTMONTH interval=month;&lt;BR /&gt;model Lsilverprice Lgoldprice  / dify=(1,12) noint p=0 q=1;&lt;BR /&gt;output lead=12;&lt;BR /&gt;run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;An ERROR : variable Lsilverprice not found&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ERROR variable Lgoldprice not found&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I refer to data set of variable of date&amp;nbsp; OUTMONTH&amp;nbsp; but the dataset of variabls&amp;nbsp;Lsilverprice Lgoldprice is WORK.IMPORT . how can do my code with many thanks .&lt;/P&gt;</description>
      <pubDate>Sun, 12 Jan 2020 21:01:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616814#M8661</guid>
      <dc:creator>SystemsasdD2019</dc:creator>
      <dc:date>2020-01-12T21:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: monthly data format</title>
      <link>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616819#M8662</link>
      <description>&lt;P&gt;Maxim 3: Know Your Data. You can only run the procedure on variables that are actually present in your dataset.&lt;/P&gt;</description>
      <pubDate>Sun, 12 Jan 2020 21:52:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/616819#M8662</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-01-12T21:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: monthly data format</title>
      <link>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/617216#M8667</link>
      <description>&lt;P&gt;Sory, But the procedure requires the use of all variables Lsilverprice Lgoldprice&amp;nbsp; and variable of date OUTMONTH .there is no way to combine them , when I apply the program :&lt;/P&gt;&lt;PRE&gt;title "Illustration of ODS Graphics";&lt;BR /&gt;proc varmax data=WANT plot(unpack)=(residual model forecasts);&lt;BR /&gt;id OUTMONTH interval=month;&lt;BR /&gt;model Lsilverprice Lgoldprice  / dify=(1,12) noint p=0 q=1;&lt;BR /&gt;output lead=12;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;appears an ERROR: variable Lsilverprice not found&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ERROR variable Lgoldprice not found&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when I apply the program ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;title "Illustration of ODS Graphics";&lt;BR /&gt;proc varmax data=IMPORT&amp;nbsp; &amp;nbsp;plot(unpack)=(residual model forecasts);&lt;BR /&gt;id OUTMONTH interval=month;&lt;BR /&gt;model Lsilverprice Lgoldprice / dify=(1,12) noint p=0 q=1;&lt;BR /&gt;output lead=12;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;An error appears:&lt;/P&gt;&lt;P&gt;&amp;nbsp;ERROR : variable OUTMONTH not found&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;there is no way to combine them , with&amp;nbsp; thanks and appreciation .&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2020 15:27:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/617216#M8667</guid>
      <dc:creator>SystemsasdD2019</dc:creator>
      <dc:date>2020-01-14T15:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: monthly data format</title>
      <link>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/617221#M8668</link>
      <description>&lt;P&gt;&lt;FONT size="5"&gt;&lt;STRONG&gt;KNOW&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="5"&gt;&lt;STRONG&gt;YOUR&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="5"&gt;&lt;STRONG&gt;DATA&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="5"&gt;&lt;FONT size="2"&gt;You have to know which variables are present in your dataset, and subsequently which ones to use in the procedure, according to the documentation. We could only try to provide further help if you give us a usable example of your dataset&amp;nbsp;&lt;STRONG&gt;in a data step with datalines&lt;/STRONG&gt; and what information you want to gain by using the varmax procedure.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2020 15:42:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/617221#M8668</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-01-14T15:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: monthly data format</title>
      <link>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/617239#M8669</link>
      <description>&lt;P&gt;SAS is saying your input data set, called WANT in your code does not have the variables you're trying to use.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Run a PROC CONTENTS on your data set to verify that you have the variables you need.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc contents data=want;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If the data set does not have the variables Lgoldprice and Lsilverprice, then there's no data to be used. Check the output in the results pane to see if the variables are present.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;You say there's no way to 'combine them'. What's them? What type of combination are you thinking of here?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;From the code you've posted earlier your data set only has month so not sure where you're expecting the prices to come from.&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2020 16:29:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/monthly-data-format/m-p/617239#M8669</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-01-14T16:29:57Z</dc:date>
    </item>
  </channel>
</rss>

