<?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 SAS VA Calculated Item Btw Numeric and Character Values in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-Calculated-Item-Btw-Numeric-and-Character-Values/m-p/471527#M10495</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.GIF" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21285i704D285150270A1B/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.GIF" alt="Capture.GIF" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture2.GIF" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21286i62C530544F7730BF/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture2.GIF" alt="Capture2.GIF" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm currently struggling to figure out&amp;nbsp;how to create a calculated item that counts -&amp;nbsp;total TCN and groups by&amp;nbsp;claim type and&amp;nbsp;MCO name.&amp;nbsp; I&amp;nbsp;don't know what the best way is to lay this out I am using the "&lt;STRONG&gt;IF ELSE&lt;/STRONG&gt;" statement&amp;nbsp;but keep getting a type mismatch message: "expected type at this location is Boolean, type of item being applied is Numeric" prompt&amp;nbsp; when using the &lt;STRONG&gt;sub string&lt;/STRONG&gt; and &lt;STRONG&gt;find string &lt;/STRONG&gt;operators.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am currently trying to use this format - see screenshot&amp;nbsp;above ----any ideas folks?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 20 Jun 2018 14:32:45 GMT</pubDate>
    <dc:creator>LOLADADA</dc:creator>
    <dc:date>2018-06-20T14:32:45Z</dc:date>
    <item>
      <title>SAS VA Calculated Item Btw Numeric and Character Values</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-Calculated-Item-Btw-Numeric-and-Character-Values/m-p/471527#M10495</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.GIF" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21285i704D285150270A1B/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.GIF" alt="Capture.GIF" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture2.GIF" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21286i62C530544F7730BF/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture2.GIF" alt="Capture2.GIF" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm currently struggling to figure out&amp;nbsp;how to create a calculated item that counts -&amp;nbsp;total TCN and groups by&amp;nbsp;claim type and&amp;nbsp;MCO name.&amp;nbsp; I&amp;nbsp;don't know what the best way is to lay this out I am using the "&lt;STRONG&gt;IF ELSE&lt;/STRONG&gt;" statement&amp;nbsp;but keep getting a type mismatch message: "expected type at this location is Boolean, type of item being applied is Numeric" prompt&amp;nbsp; when using the &lt;STRONG&gt;sub string&lt;/STRONG&gt; and &lt;STRONG&gt;find string &lt;/STRONG&gt;operators.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am currently trying to use this format - see screenshot&amp;nbsp;above ----any ideas folks?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 14:32:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-Calculated-Item-Btw-Numeric-and-Character-Values/m-p/471527#M10495</guid>
      <dc:creator>LOLADADA</dc:creator>
      <dc:date>2018-06-20T14:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: SAS VA Calculated Item Btw Numeric and Character Values</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-Calculated-Item-Btw-Numeric-and-Character-Values/m-p/473401#M10538</link>
      <description>&lt;P&gt;FindChar returns a number for the first position of any of the desired chars to find. &amp;nbsp;I think it returns 0 or -1 if none are found, so you need to make a modification to something like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;IF ( FindChar (inputs) &amp;gt; 0 )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and then it should work like you want.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 14:30:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-Calculated-Item-Btw-Numeric-and-Character-Values/m-p/473401#M10538</guid>
      <dc:creator>MikeJenista</dc:creator>
      <dc:date>2018-06-26T14:30:25Z</dc:date>
    </item>
  </channel>
</rss>

