<?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>Number of Field Types</title><link>https://community.appian.com/discussions/f/general/34468/number-of-field-types</link><description>Hi Everyone, 
 I have field which has values &amp;quot;a&amp;quot;, &amp;quot;b&amp;quot;, &amp;quot;c&amp;quot; and I need to get the count of these values in record types. Can anyone please help me with this.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Number of Field Types</title><link>https://community.appian.com/thread/131900?ContentTypeID=1</link><pubDate>Tue, 26 Mar 2024 16:59:10 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5350ef90-6741-4afc-832f-4bf951e96d1e</guid><dc:creator>Ing Mario</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;a href="/members/shubhamy3376"&gt;Rahul009&lt;/a&gt;&amp;nbsp; I would like to get more information about what you are trying to achieve.&lt;/p&gt;
&lt;p&gt;*are you trying to save the values on differente record types or just one record type?&lt;/p&gt;
&lt;p&gt;*what is the input values are you receiving on your field ? if comma its present.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;for now I can give you a possible solution:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Rule:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!textField, 
  {
    a!sectionLayout(
      contents: {}
    ),
    a!sectionLayout(
      label: &amp;quot;Field Values Into Record Types&amp;quot;,
      contents: {
        a!textField(
          label: &amp;quot;Field&amp;quot;,
          labelPosition: &amp;quot;ABOVE&amp;quot;,
          value: local!textField,
          saveInto: local!textField,  
          refreshAfter: &amp;quot;UNFOCUS&amp;quot;,
          validations: {}
        ),
        a!buttonArrayLayout(
          buttons: {
            a!buttonWidget(
              label: &amp;quot;Save&amp;quot;,
              value: ri!theRecord,
              saveInto: a!save(ri!theRecord, length(split(local!textField, &amp;quot;,&amp;quot;))), 
              submit: true,
              style: &amp;quot;OUTLINE&amp;quot;
            )
          },
          align: &amp;quot;START&amp;quot;,
          marginBelow: &amp;quot;NONE&amp;quot;
        )
      }
    )
  }
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Interface:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/pastedimage1711472305927v2.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Results:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/pastedimage1711472802764v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;I hope this works for you, greetings.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Number of Field Types</title><link>https://community.appian.com/thread/131894?ContentTypeID=1</link><pubDate>Tue, 26 Mar 2024 15:47:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4cebd64b-c133-49f8-a67c-113a466f4701</guid><dc:creator>amiteshsin</dc:creator><description>&lt;p&gt;sum(split({1,2,3},&amp;quot;,&amp;quot;))&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;replace {1,2,3} to pass the field you are referring to&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Number of Field Types</title><link>https://community.appian.com/thread/131824?ContentTypeID=1</link><pubDate>Mon, 25 Mar 2024 16:49:50 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c1ea227a-ef8f-48d9-ae29-e9986c932a20</guid><dc:creator>Kalpesh Gujrati</dc:creator><description>&lt;p&gt;Hi &lt;a href="/members/shubhamy3376"&gt;Rahul009&lt;/a&gt;&amp;nbsp;, if i have understood your question correctly, you can create the custom record field in the record type and use the&amp;nbsp;Aggregation&amp;nbsp;function to count the occurrence of&amp;nbsp;&amp;quot;a&amp;quot;, &amp;quot;b&amp;quot;, &amp;quot;c&amp;quot;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Number of Field Types</title><link>https://community.appian.com/thread/131823?ContentTypeID=1</link><pubDate>Mon, 25 Mar 2024 16:38:26 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:313f0bb5-37d1-4731-ba39-af2befcdc1dd</guid><dc:creator>Karumuru Abhishek</dc:creator><description>&lt;p&gt;hi&amp;nbsp;&lt;a href="/members/shubhamy3376"&gt;Rahul009&lt;/a&gt;&amp;nbsp; &amp;nbsp;are you saving a,b,c values in one column in table ?can you check this code and let me know&lt;pre class="ui-code" data-mode="text"&gt;length(split(local!data[&amp;#39;recordType!recordname.fieldname],&amp;quot;,&amp;quot;))&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>