<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Milestone</title><link>https://community.appian.com/discussions/f/general/22664/milestone</link><description>I am unable to get a milestone for a particular id . Can anyone help me with it please</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Milestone</title><link>https://community.appian.com/thread/102902?ContentTypeID=1</link><pubDate>Thu, 13 Oct 2022 13:55:17 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:62fe9af2-c9ce-41dd-ace4-6e897a329f47</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/11/pastedimage1665669344669v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Milestone</title><link>https://community.appian.com/thread/102901?ContentTypeID=1</link><pubDate>Thu, 13 Oct 2022 13:04:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c36eee35-4c37-4338-ba60-04b42b5e5e73</guid><dc:creator>Richard Michaelis</dc:creator><description>&lt;p&gt;can you share your code?&lt;br /&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/11/pastedimage1665666300618v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Milestone</title><link>https://community.appian.com/thread/102894?ContentTypeID=1</link><pubDate>Thu, 13 Oct 2022 11:39:28 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:77501e24-0932-4f6d-bb17-eca293c85ab0</guid><dc:creator>wardr0001</dc:creator><description>[deleted]&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Milestone</title><link>https://community.appian.com/thread/88868?ContentTypeID=1</link><pubDate>Thu, 09 Dec 2021 09:39:47 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b5b35d6d-accf-4bb2-8f04-46f4a4fcc052</guid><dc:creator>gaddamv0001</dc:creator><description>&lt;p&gt;Yeah Sure . Thank you I got it .&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Milestone</title><link>https://community.appian.com/thread/88654?ContentTypeID=1</link><pubDate>Fri, 03 Dec 2021 14:00:09 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:66d267c7-f190-49b8-ad88-b1687ef12a15</guid><dc:creator>Peter Lewis</dc:creator><description>&lt;p&gt;Ok you just have to update the &amp;quot;active&amp;quot; parameter to refer to the step you want to show as active. If your data is storing the text string instead of a number, you probably need to use the wherecontains() function to find the index of the value in your list.&lt;/p&gt;
&lt;p&gt;Something like this should work:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!steps: { &amp;quot;One&amp;quot;, &amp;quot;Two&amp;quot;, &amp;quot;Three&amp;quot; },
  a!milestoneField(
    label: &amp;quot;Milestone&amp;quot;,
    labelPosition: &amp;quot;ABOVE&amp;quot;,
    steps: local!steps,
    links: a!forEach(
      items: local!steps,
      expression: a!dynamicLink(
        label: &amp;quot;Status&amp;quot;,
        value: fv!item,
        saveInto: ri!request.status
      )
    ),
    active: wherecontains(ri!request.status, local!steps)
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Milestone</title><link>https://community.appian.com/thread/88615?ContentTypeID=1</link><pubDate>Thu, 02 Dec 2021 23:39:25 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:258a0b74-823b-4f35-8d41-2a3ee61cc457</guid><dc:creator>Paolo C</dc:creator><description>&lt;p&gt;Hello friend,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;If I understand you correctly, you are trying to display the milestone that your current request is in. That particular index should be attributed to the parameter &amp;quot;active&amp;quot; which you currently have hard coded as &amp;quot;1&amp;quot;&lt;/p&gt;
&lt;p&gt;Nevertheless, your current variables are returning steps = 5 items and steps1 = 14 items (due to the fact that your iconSteps is null so it&amp;#39;s returning all). Therefore, if your local!steps1 is the index, you&amp;#39;d need to pass that value into your active parameter as a number. since it seems you&amp;#39;re returning text, you&amp;#39;ll need to do a wherecontains() to get the index from local!steps.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Second, your parameter of &amp;quot;steps&amp;quot;, should be the variable: local!steps, this will be the one that will display all the different steps in the milestone bar.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;As best practice, I would consider renaming your variables, they can be confusing and should be more specific to what each variable should contain.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best of luck!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Milestone</title><link>https://community.appian.com/thread/88614?ContentTypeID=1</link><pubDate>Thu, 02 Dec 2021 23:00:36 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:0fa545e3-5435-4787-86a1-dfa0132a2ce3</guid><dc:creator>gaddamv0001</dc:creator><description>&lt;p&gt;I am trying to show the status value ( eg: request created, meeting scheduled, application sent and request approved as seen in the above screenshot).&lt;/p&gt;
&lt;p&gt;So, for eg whenever I create a request, the status of that request changes to request created right so that I want to show it in a milestone way, and then when a meeting is scheduled for the same request the status changes to the scheduled meeting and it should be shown in milestone and so on.&lt;/p&gt;
&lt;p&gt;So how to get it dynamically for each request.&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/1000x1000/__key/communityserver-discussions-components-files/11/pastedimage1638487124822v1.png" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Milestone</title><link>https://community.appian.com/thread/88612?ContentTypeID=1</link><pubDate>Thu, 02 Dec 2021 22:34:21 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8566aa61-470e-41ac-a524-39490b141136</guid><dc:creator>Peter Lewis</dc:creator><description>&lt;p&gt;Did you look at the documentation? There&amp;#39;s several good examples for how to configure this: this:&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Milestone_Component.html"&gt;https://docs.appian.com/suite/help/latest/Milestone_Component.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You are showing two variables, local!steps and local!steps1 - what&amp;#39;s the difference between them? I think you only need one of these. Also, it looks to me like your milestone is showing the correct selection (it&amp;#39;s showing the first item since you have active: 1). What value are you trying to show in the milestone?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Milestone</title><link>https://community.appian.com/thread/88601?ContentTypeID=1</link><pubDate>Thu, 02 Dec 2021 19:03:35 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:faa0ffd4-79f6-46f5-a751-25a86f839b05</guid><dc:creator>gaddamv0001</dc:creator><description>&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/1000x240/__key/communityserver-discussions-components-files/11/pastedimage1638471657032v1.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;img alt=" " src="/resized-image/__size/0x1000/__key/communityserver-discussions-components-files/11/pastedimage1638471725442v2.png" /&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Based on my status for a particular id i need to show the status tracking through milestone&lt;/strong&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Milestone</title><link>https://community.appian.com/thread/88600?ContentTypeID=1</link><pubDate>Thu, 02 Dec 2021 18:51:02 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ba2aaa90-a7bb-4fb5-a96a-4143ded7dc99</guid><dc:creator>Danny Verb</dc:creator><description>&lt;p&gt;You&amp;#39;ll need to add more details. What do you mean by &amp;#39;Get a milestone&amp;#39;? If you go full screen, do more options appear?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>