<?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: Help in MID function in Reporting Service &amp; Alerting</title>
    <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006848#M462</link>
    <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/110490"&gt;@theboss-123&lt;/a&gt; The &lt;STRONG&gt;Like &lt;/STRONG&gt;operator and the &lt;STRONG&gt;WIldmatch&lt;/STRONG&gt; function work similarly.&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="pluma-sent-0"&gt;However, both suggestions differ slightly as ff;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Where Wildmatch(Invoice,'FAF*') ;&amp;nbsp; &lt;/STRONG&gt;//This finds any Invoice values that start with "FAF"&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Where "invoice number" Like '*FAF*'&lt;/STRONG&gt;;&amp;nbsp; //whereas this finds any Invoice values that have "FAF" in any position&lt;/P&gt;</description>
    <pubDate>Mon, 21 Nov 2022 07:35:30 GMT</pubDate>
    <dc:creator>BrunPierre</dc:creator>
    <dc:date>2022-11-21T07:35:30Z</dc:date>
    <item>
      <title>Help in MID function</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006650#M451</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i have invoice&amp;nbsp;&lt;STRONG&gt;(FAF-U1200-20163411)&lt;/STRONG&gt; and Credit not&amp;nbsp;&lt;STRONG&gt;(AVC-U1200-201600007&lt;/STRONG&gt;) is there a way in load statstement to display just invoice which start with "FAF" i hear about Mid function anyone please could give an assist&lt;/P&gt;</description>
      <pubDate>Fri, 18 Nov 2022 22:44:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006650#M451</guid>
      <dc:creator>theboss-123</dc:creator>
      <dc:date>2022-11-18T22:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Help in MID function</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006713#M452</link>
      <description>&lt;DIV class="lia-message-body-accepted-solution-checkmark"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Perhaps with the Mid or SubField function.&lt;/P&gt;
&lt;P&gt;Like&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;If(Mid(Invoice,1,3)='FAF',Invoice) as "FAF Invoices"&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;If(SubField(Invoice,'-',1)='FAF',Invoice) as "FAF Invoices"&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Nov 2022 17:46:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006713#M452</guid>
      <dc:creator>BrunPierre</dc:creator>
      <dc:date>2022-11-19T17:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: Help in MID function</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006716#M453</link>
      <description>&lt;P&gt;Hi Pierre thanks for ur reply where I could put this syntaxe under the line of the colomun related to the invoice number in the load script or where after select sql can u send me un examples please&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Nov 2022 19:07:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006716#M453</guid>
      <dc:creator>theboss-123</dc:creator>
      <dc:date>2022-11-19T19:07:34Z</dc:date>
    </item>
    <item>
      <title>Re: Help in MID function</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006718#M455</link>
      <description>&lt;P&gt;This way you would have only "FAF" invoices in your data model.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;"TRANSACTION_HISTORY":&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;LOAD "Field1",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"Field2",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"Field3",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"invoice number"&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Where SubField("invoice number",'-',1)='FAF';&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;STRONG&gt;SQL SELECT *&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;FROM SERV.dbo."TRANSACTION_HISTORY";&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Nov 2022 20:58:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006718#M455</guid>
      <dc:creator>BrunPierre</dc:creator>
      <dc:date>2022-11-19T20:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: Help in MID function</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006736#M456</link>
      <description>&lt;P&gt;Hi Pierre I tried ur suggestion but it still load al' invoice number&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 20 Nov 2022 09:56:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006736#M456</guid>
      <dc:creator>theboss-123</dc:creator>
      <dc:date>2022-11-20T09:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Help in MID function</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006738#M458</link>
      <description>&lt;P&gt;Perhaps with a filter like this.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Where "invoice number" Like '*FAF*';&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 21 Nov 2022 07:14:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006738#M458</guid>
      <dc:creator>BrunPierre</dc:creator>
      <dc:date>2022-11-21T07:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: Help in MID function</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006740#M459</link>
      <description>&lt;P&gt;Load * From YourTable&lt;/P&gt;
&lt;P&gt;Where Wildmatch(Invoice,'FAF*')&lt;/P&gt;</description>
      <pubDate>Sun, 20 Nov 2022 11:22:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006740#M459</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2022-11-20T11:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: Help in MID function</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006742#M460</link>
      <description>&lt;P&gt;Please find my exemple FYI the table&amp;nbsp; PINVOICED is in Relationship with other&amp;nbsp; tables&lt;/P&gt;</description>
      <pubDate>Sun, 20 Nov 2022 12:41:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006742#M460</guid>
      <dc:creator>theboss-123</dc:creator>
      <dc:date>2022-11-20T12:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: Help in MID function</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006779#M461</link>
      <description>&lt;P&gt;Hi Again i tried also the syntaxe below but i got an error&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NoConcatenate &lt;STRONG&gt;LOAD&lt;/STRONG&gt; *&lt;BR /&gt;Resident tab1 where WildMatch(Period, 'Cases*');&lt;BR /&gt;&lt;STRONG&gt;DROP&lt;/STRONG&gt; Table tab1;&lt;/P&gt;
&lt;P&gt;when loading data an error displayed "table tab21 not found"&lt;/P&gt;</description>
      <pubDate>Mon, 21 Nov 2022 01:08:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006779#M461</guid>
      <dc:creator>theboss-123</dc:creator>
      <dc:date>2022-11-21T01:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: Help in MID function</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006848#M462</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/110490"&gt;@theboss-123&lt;/a&gt; The &lt;STRONG&gt;Like &lt;/STRONG&gt;operator and the &lt;STRONG&gt;WIldmatch&lt;/STRONG&gt; function work similarly.&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="pluma-sent-0"&gt;However, both suggestions differ slightly as ff;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Where Wildmatch(Invoice,'FAF*') ;&amp;nbsp; &lt;/STRONG&gt;//This finds any Invoice values that start with "FAF"&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Where "invoice number" Like '*FAF*'&lt;/STRONG&gt;;&amp;nbsp; //whereas this finds any Invoice values that have "FAF" in any position&lt;/P&gt;</description>
      <pubDate>Mon, 21 Nov 2022 07:35:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006848#M462</guid>
      <dc:creator>BrunPierre</dc:creator>
      <dc:date>2022-11-21T07:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: Help in MID function</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006855#M463</link>
      <description>&lt;P&gt;Provide the whole load script.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Nov 2022 07:41:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006855#M463</guid>
      <dc:creator>BrunPierre</dc:creator>
      <dc:date>2022-11-21T07:41:12Z</dc:date>
    </item>
    <item>
      <title>Re: Help in MID function</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006984#M465</link>
      <description>&lt;P&gt;the informations are availble on FACT_Facture the filter could be apply on "NUM_0" as Dim6&lt;/P&gt;</description>
      <pubDate>Mon, 21 Nov 2022 12:09:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2006984#M465</guid>
      <dc:creator>theboss-123</dc:creator>
      <dc:date>2022-11-21T12:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: Help in MID function</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2007038#M466</link>
      <description>&lt;P&gt;&lt;SPAN class="lia-message-unread lia-message-unread-windows"&gt;See attached. The filter is applied at the backend and as a calculated expression. Choose what works best for you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Nov 2022 13:21:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2007038#M466</guid>
      <dc:creator>BrunPierre</dc:creator>
      <dc:date>2022-11-21T13:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: Help in MID function</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2007095#M467</link>
      <description>&lt;P&gt;Thanks a lot Pierre for your time and your&amp;nbsp; help this is what i was looking&amp;nbsp; for thanks again&lt;/P&gt;</description>
      <pubDate>Mon, 21 Nov 2022 14:34:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Help-in-MID-function/m-p/2007095#M467</guid>
      <dc:creator>theboss-123</dc:creator>
      <dc:date>2022-11-21T14:34:48Z</dc:date>
    </item>
  </channel>
</rss>

