<?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 Pulling certain data from excel  in QS in Visualization and Usability</title>
    <link>https://community.qlik.com/t5/Visualization-and-Usability/Pulling-certain-data-from-excel-in-QS/m-p/2018018#M220401</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have excel sheet, with field name EMP(NAME/ID),&lt;/P&gt;
&lt;P&gt;The data in some rows in that field be like 'Jake-twikdl0003', and in some rows data be like 'twikdl0003'&lt;/P&gt;
&lt;P&gt;From both rows I need to pick 'kdl'.....how to pull this from two different types of rows?&lt;/P&gt;</description>
    <pubDate>Mon, 19 Dec 2022 14:11:01 GMT</pubDate>
    <dc:creator>Bharathi09</dc:creator>
    <dc:date>2022-12-19T14:11:01Z</dc:date>
    <item>
      <title>Pulling certain data from excel  in QS</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Pulling-certain-data-from-excel-in-QS/m-p/2018018#M220401</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have excel sheet, with field name EMP(NAME/ID),&lt;/P&gt;
&lt;P&gt;The data in some rows in that field be like 'Jake-twikdl0003', and in some rows data be like 'twikdl0003'&lt;/P&gt;
&lt;P&gt;From both rows I need to pick 'kdl'.....how to pull this from two different types of rows?&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2022 14:11:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Pulling-certain-data-from-excel-in-QS/m-p/2018018#M220401</guid>
      <dc:creator>Bharathi09</dc:creator>
      <dc:date>2022-12-19T14:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: Pulling certain data from excel  in QS</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Pulling-certain-data-from-excel-in-QS/m-p/2018026#M220402</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Is the 'kdl####' always at the end of the cell, with the same amount of characters (3 letters followed by 4 numbers)? &lt;BR /&gt;&lt;BR /&gt;If so, you could use RIGHT(field_name, 7) to select the last 7 digits.</description>
      <pubDate>Mon, 19 Dec 2022 14:20:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Pulling-certain-data-from-excel-in-QS/m-p/2018026#M220402</guid>
      <dc:creator>rthatcher</dc:creator>
      <dc:date>2022-12-19T14:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: Pulling certain data from excel  in QS</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Pulling-certain-data-from-excel-in-QS/m-p/2018036#M220403</link>
      <description>[cid:227eb440-b787-4692-971e-c1fe3d22d117]&lt;BR /&gt; data is like this I need to pull 'kdl' from each row&lt;BR /&gt;Answer pls&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;</description>
      <pubDate>Mon, 19 Dec 2022 14:27:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Pulling-certain-data-from-excel-in-QS/m-p/2018036#M220403</guid>
      <dc:creator>Bharathi09</dc:creator>
      <dc:date>2022-12-19T14:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: Pulling certain data from excel  in QS</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Pulling-certain-data-from-excel-in-QS/m-p/2018084#M220410</link>
      <description>&lt;P&gt;You can try with index('kdl') if this values is &amp;gt;0 the string is in the record&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2022 15:24:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Pulling-certain-data-from-excel-in-QS/m-p/2018084#M220410</guid>
      <dc:creator>menta</dc:creator>
      <dc:date>2022-12-19T15:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: Pulling certain data from excel  in QS</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Pulling-certain-data-from-excel-in-QS/m-p/2018291#M220439</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Option1, using index()&amp;nbsp; ,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;using lower as index is case sensitive&amp;nbsp; &amp;nbsp;but will match the search string in&lt;U&gt; any position of the string&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Where&amp;nbsp; &lt;STRONG&gt;Index&lt;/STRONG&gt;( lower(EmpName),'kdl')&amp;nbsp; &amp;nbsp;;&amp;nbsp;&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;Option2, using Wildmatch()&amp;nbsp; ,&amp;nbsp; case insensitive but will only find search string as per position in string&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Where&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Wildmatch&lt;/STRONG&gt;( EmpName,'*kdl*')&amp;nbsp; &amp;nbsp;;&amp;nbsp; &amp;nbsp; // finds kdl in the &lt;STRONG&gt;middle&lt;/STRONG&gt; of the string&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Where&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Wildmatch&lt;/STRONG&gt;&lt;SPAN&gt;( EmpName,'kdl*')&amp;nbsp; &amp;nbsp;;&amp;nbsp; &amp;nbsp; // finds kdl in the &lt;STRONG&gt;beginning&lt;/STRONG&gt; of the string&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Where&amp;nbsp;&amp;nbsp;&lt;STRONG&gt;Wildmatch&lt;/STRONG&gt;( EmpName,'*kdl')&amp;nbsp; &amp;nbsp;;&amp;nbsp; &amp;nbsp; // finds kdl in the &lt;STRONG&gt;end&lt;/STRONG&gt; of the string&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Where&amp;nbsp;&amp;nbsp;&lt;STRONG&gt;Wildmatch&lt;/STRONG&gt;( EmpName,'kdl*','*kdl*','*kdl')&amp;nbsp; &amp;nbsp;;&amp;nbsp; &amp;nbsp; // finds kdl in all above scenarios&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2022 02:49:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Pulling-certain-data-from-excel-in-QS/m-p/2018291#M220439</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2022-12-20T02:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: Pulling certain data from excel  in QS</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Pulling-certain-data-from-excel-in-QS/m-p/2018320#M220445</link>
      <description>How to pull 10th to 12th letters in any row?&lt;BR /&gt;examole: empid-ssdkdl223&lt;BR /&gt;like 'kdl' I need to pull 10th  to 12th characters from data&lt;BR /&gt;&lt;BR /&gt;Please let me know&lt;BR /&gt;Thanks in advance&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Dec 2022 05:19:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Pulling-certain-data-from-excel-in-QS/m-p/2018320#M220445</guid>
      <dc:creator>Bharathi09</dc:creator>
      <dc:date>2022-12-20T05:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: Pulling certain data from excel  in QS</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Pulling-certain-data-from-excel-in-QS/m-p/2018321#M220446</link>
      <description>&lt;P&gt;Some rows are like&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;empid-ssdkdl223&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;some rows are like&amp;nbsp;&lt;SPAN&gt;ssdkdl223&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;from every row I need to pull 3 letters&amp;nbsp; after ssd...how to do it??&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2022 05:24:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Pulling-certain-data-from-excel-in-QS/m-p/2018321#M220446</guid>
      <dc:creator>Bharathi09</dc:creator>
      <dc:date>2022-12-20T05:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: Pulling certain data from excel  in QS</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Pulling-certain-data-from-excel-in-QS/m-p/2018323#M220447</link>
      <description>&lt;P&gt;Use mid() function&lt;/P&gt;
&lt;P&gt;Mid(empname,10,12)&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2022 05:31:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Pulling-certain-data-from-excel-in-QS/m-p/2018323#M220447</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2022-12-20T05:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: Pulling certain data from excel  in QS</title>
      <link>https://community.qlik.com/t5/Visualization-and-Usability/Pulling-certain-data-from-excel-in-QS/m-p/2018330#M220448</link>
      <description>&lt;P&gt;As &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/2751"&gt;@vinieme12&lt;/a&gt;&amp;nbsp;mentioned,&amp;nbsp; the index function can be useful in this case. I'm combining&amp;nbsp; it with mid() which is also mentioned.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;mid( [EMP(NAME/ID)], Index( lower( [EMP(NAME/ID)] ),'ssd')&amp;nbsp; &amp;nbsp;+ 3, 3)&amp;nbsp;&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;This will pull the first three letter after the first occurrence of the string 'ssd' in the field [EMP(NAME/ID)].&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2022 05:47:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Visualization-and-Usability/Pulling-certain-data-from-excel-in-QS/m-p/2018330#M220448</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2022-12-20T05:47:16Z</dc:date>
    </item>
  </channel>
</rss>

