<?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: Fetch multiple IP Address information from string field and also get latest IP address in Qlik Automate</title>
    <link>https://community.qlik.com/t5/Qlik-Automate/Fetch-multiple-IP-Address-information-from-string-field-and-also/m-p/2488300#M4972</link>
    <description>&lt;P&gt;Something like that however string column coming from source feed and need to do under Qlik table with help of function in table format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 22 Oct 2024 04:53:14 GMT</pubDate>
    <dc:creator>mramitbhandari17</dc:creator>
    <dc:date>2024-10-22T04:53:14Z</dc:date>
    <item>
      <title>Fetch multiple IP Address information from string field and also get latest IP address</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Fetch-multiple-IP-Address-information-from-string-field-and-also/m-p/2488112#M4969</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am trying to fetch multiple ip address information from string field. Below is the example&lt;/P&gt;
&lt;P&gt;String column&lt;/P&gt;
&lt;P&gt;'ABC user fetch values from 7.2.1 below and 7.1.1&amp;nbsp;version and below, 7.2 all versions, 7.0 all versions, 6.4 all versions'&lt;/P&gt;
&lt;P&gt;'fetch user ip addresses&amp;nbsp;7.4.2 and below, 7.2 all versions, 7.0 all versions, 2.0 all versions may allow a&amp;nbsp;privileged'&lt;/P&gt;
&lt;P&gt;how to get only ip address in one cell with latest ip address&lt;/P&gt;
&lt;P&gt;7.2.1, 7.1.1&lt;/P&gt;
&lt;P&gt;7.4.2&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2024 07:58:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Fetch-multiple-IP-Address-information-from-string-field-and-also/m-p/2488112#M4969</guid>
      <dc:creator>mramitbhandari17</dc:creator>
      <dc:date>2024-10-21T07:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: Fetch multiple IP Address information from string field and also get latest IP address</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Fetch-multiple-IP-Address-information-from-string-field-and-also/m-p/2488229#M4971</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/164078"&gt;@mramitbhandari17&lt;/a&gt;&amp;nbsp; Maybe something like this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Table1:&lt;BR /&gt;LOAD *,&lt;BR /&gt;SubField(StringColumn, ',', IterNo()) AS Version&lt;BR /&gt;WHILE IterNo() &amp;lt;= SubStringCount(StringColumn, ',') + 1;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;StringColumn&lt;BR /&gt;'ABC user fetch values from 7.2.1 below and 7.1.1 version and below, 7.2 all versions, 7.0 all versions, 6.4 all versions'&lt;BR /&gt;'fetch user ip addresses 7.4.2 and below, 7.2 all versions, 7.0 all versions, 2.0 all versions may allow a privileged'&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TableWithIPs:&lt;BR /&gt;LOAD *,&lt;BR /&gt;If(&lt;BR /&gt;WildMatch(Version, '*.*.*'), &lt;BR /&gt;KeepChar(Version, '0123456789. '),&lt;BR /&gt;Null()&lt;BR /&gt;) AS ExtractedIP&lt;BR /&gt;RESIDENT Table1;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NoNullIPs:&lt;BR /&gt;noconcatenate&lt;BR /&gt;LOAD&lt;BR /&gt;StringColumn,&lt;BR /&gt;ExtractedIP&lt;BR /&gt;RESIDENT TableWithIPs&lt;BR /&gt;WHERE NOT IsNull(ExtractedIP);&lt;BR /&gt;DROP TABLE Table1,TableWithIPs;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;OutputTable:&lt;BR /&gt;noconcatenate&lt;BR /&gt;LOAD&lt;BR /&gt;StringColumn,&lt;BR /&gt;ExtractedIP&lt;BR /&gt;RESIDENT NoNullIPs;&lt;/P&gt;
&lt;P&gt;DROP TABLE NoNullIPs;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;output&amp;nbsp; :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Taoufiq_Zarra_0-1729521261556.png" style="width: 722px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/173215iB71FE3A84B5EC2DF/image-dimensions/722x143?v=v2" width="722" height="143" role="button" title="Taoufiq_Zarra_0-1729521261556.png" alt="Taoufiq_Zarra_0-1729521261556.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2024 14:34:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Fetch-multiple-IP-Address-information-from-string-field-and-also/m-p/2488229#M4971</guid>
      <dc:creator>Taoufiq_Zarra</dc:creator>
      <dc:date>2024-10-21T14:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: Fetch multiple IP Address information from string field and also get latest IP address</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Fetch-multiple-IP-Address-information-from-string-field-and-also/m-p/2488300#M4972</link>
      <description>&lt;P&gt;Something like that however string column coming from source feed and need to do under Qlik table with help of function in table format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2024 04:53:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Fetch-multiple-IP-Address-information-from-string-field-and-also/m-p/2488300#M4972</guid>
      <dc:creator>mramitbhandari17</dc:creator>
      <dc:date>2024-10-22T04:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: Fetch multiple IP Address information from string field and also get latest IP address</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Fetch-multiple-IP-Address-information-from-string-field-and-also/m-p/2489351#M5007</link>
      <description>&lt;P&gt;This is not resolving my issue.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2024 05:19:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Fetch-multiple-IP-Address-information-from-string-field-and-also/m-p/2489351#M5007</guid>
      <dc:creator>mramitbhandari17</dc:creator>
      <dc:date>2024-10-28T05:19:30Z</dc:date>
    </item>
  </channel>
</rss>

