<?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: Repeating a process multiple Times in Alteryx Designer Desktop Discussions</title>
    <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Repeating-a-process-multiple-Times/m-p/9437#M4871</link>
    <description>&lt;P&gt;You're welcome!&lt;/P&gt;</description>
    <pubDate>Fri, 11 Dec 2015 12:02:23 GMT</pubDate>
    <dc:creator>mbarone</dc:creator>
    <dc:date>2015-12-11T12:02:23Z</dc:date>
    <item>
      <title>Repeating a process multiple Times</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Repeating-a-process-multiple-Times/m-p/9327#M4868</link>
      <description>&lt;P&gt;Hi, So let me explain the problem, i have an input dataset that looks like this&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;Date&lt;/TD&gt;
&lt;TD&gt;ID&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;Sales&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;7/10/2015&lt;/TD&gt;
&lt;TD&gt;5544&lt;/TD&gt;
&lt;TD&gt;1.2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;8/10/2015&lt;/TD&gt;
&lt;TD&gt;5544&lt;/TD&gt;
&lt;TD&gt;1.4&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;9/10/2015&lt;/TD&gt;
&lt;TD&gt;5544&lt;/TD&gt;
&lt;TD&gt;5.4&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;SPAN&gt;7/10/2015&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD&gt;5545&lt;/TD&gt;
&lt;TD&gt;5.4&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;SPAN&gt;8/10/2015&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD&gt;5545&lt;/TD&gt;
&lt;TD&gt;6.3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;SPAN&gt;9/10/2015&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD&gt;5545&lt;/TD&gt;
&lt;TD&gt;9.2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;SPAN&gt;7/10/2015&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD&gt;5546&lt;/TD&gt;
&lt;TD&gt;8.7&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;SPAN&gt;8/10/2015&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD&gt;5546&lt;/TD&gt;
&lt;TD&gt;7.5&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;SPAN&gt;9/10/2015&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD&gt;5546&lt;/TD&gt;
&lt;TD&gt;3.4&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now , I have created a workflow which uses the filter tool that selects the sales value for ID=5544 and does time series analysis on the sales using ETS and ARIMA and then uses TS Compare to generate a table showing the output of TS Compare which I am exporting to a csv file&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have tried to create a macro to automate this process such that I do not have to manually use the filter tool to select ID=5544 and the macro automatically selects all the ID's and repeats the process for each of them and gives me different outputs but I am not able to get the desired result.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can someone help me here to get the desired result&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 May 2018 01:31:00 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Repeating-a-process-multiple-Times/m-p/9327#M4868</guid>
      <dc:creator>Amit</dc:creator>
      <dc:date>2018-05-24T01:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: Repeating a process multiple Times</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Repeating-a-process-multiple-Times/m-p/9346#M4869</link>
      <description>&lt;P&gt;I do this sort of thing all the time - it's very useful.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First, you create a batch macro that filters and outputs for each ID. &amp;nbsp;Then you take that batch macro and use it in a module. &amp;nbsp;The module you use it in has a list of your IDs that you feed to that macro.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See attached batch macro and module.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2015 15:01:20 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Repeating-a-process-multiple-Times/m-p/9346#M4869</guid>
      <dc:creator>mbarone</dc:creator>
      <dc:date>2015-12-10T15:01:20Z</dc:date>
    </item>
    <item>
      <title>Re: Repeating a process multiple Times</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Repeating-a-process-multiple-Times/m-p/9430#M4870</link>
      <description>&lt;P&gt;Thank you so much , it really saved me a lot of time!!&lt;/P&gt;</description>
      <pubDate>Fri, 11 Dec 2015 08:27:08 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Repeating-a-process-multiple-Times/m-p/9430#M4870</guid>
      <dc:creator>Amit</dc:creator>
      <dc:date>2015-12-11T08:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: Repeating a process multiple Times</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Repeating-a-process-multiple-Times/m-p/9437#M4871</link>
      <description>&lt;P&gt;You're welcome!&lt;/P&gt;</description>
      <pubDate>Fri, 11 Dec 2015 12:02:23 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Repeating-a-process-multiple-Times/m-p/9437#M4871</guid>
      <dc:creator>mbarone</dc:creator>
      <dc:date>2015-12-11T12:02:23Z</dc:date>
    </item>
  </channel>
</rss>

