<?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: Qlikview Macro Array Field Select in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Qlikview-Macro-Array-Field-Select/m-p/1047218#M931524</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good day Marcus, Thanks for your help I finally got it working &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp; I have posted my code below if anyone else ever comes across this problem, I tried to comment where I can for easier reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub SendGMail ()&lt;BR /&gt; LogAdd("Starting Mailing Process")&lt;BR /&gt; &lt;BR /&gt; 'CLEAR ACTIVE DOCUMENT SELECTIONS&lt;BR /&gt; LogAdd("Clear all selections")&lt;BR /&gt; ActiveDocument.ClearAll true&lt;BR /&gt; LogAdd("Selections Cleared")&lt;BR /&gt; &lt;BR /&gt; ' CREATE ARRAY&lt;BR /&gt; Set val=ActiveDocument.Fields("Unique").GetPossibleValues(20000)&lt;BR /&gt; For i = 0 to val.count-1 &lt;BR /&gt; set Unique = val.Item(i)&lt;BR /&gt; 'select each one that's on the arraylist &lt;BR /&gt; ActiveDocument.Fields("Unique").Select Unique.text&lt;BR /&gt; LogAdd("Getting Client")&lt;BR /&gt; &lt;BR /&gt; ' CLEAR EMAIL CACHE -- Else it will cause multiple attachments to be sent in error&lt;BR /&gt; Set objMsg = nothing &lt;BR /&gt; Set msgConf = nothing&lt;BR /&gt; &lt;BR /&gt; ' RECONFIGURE EMAIL&lt;BR /&gt; Set objMsg = CreateObject("CDO.Message") &lt;BR /&gt; Set msgConf = CreateObject("CDO.Configuration") &lt;BR /&gt; &lt;BR /&gt; ' EMAIL SERVER CONFIGURATION&lt;BR /&gt;&lt;SPAN&gt; msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/sendusing" rel="nofollow" target="_blank"&gt;http://schemas.microsoft.com/cdo/configuration/sendusing&lt;/A&gt;&lt;SPAN&gt;") = 2 &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpserver" rel="nofollow" target="_blank"&gt;http://schemas.microsoft.com/cdo/configuration/smtpserver&lt;/A&gt;&lt;SPAN&gt;") = "smtp.gmail.com" &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpserverport" rel="nofollow" target="_blank"&gt;http://schemas.microsoft.com/cdo/configuration/smtpserverport&lt;/A&gt;&lt;SPAN&gt;") = 465&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpauthenticate" rel="nofollow" target="_blank"&gt;http://schemas.microsoft.com/cdo/configuration/smtpauthenticate&lt;/A&gt;&lt;SPAN&gt;") = 1 &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/sendusername" rel="nofollow" target="_blank"&gt;http://schemas.microsoft.com/cdo/configuration/sendusername&lt;/A&gt;&lt;SPAN&gt;") = "&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:****@gmail.com"&gt;****@gmail.com&lt;/A&gt;&lt;SPAN&gt;" 'type your mail id&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/sendpassword" rel="nofollow" target="_blank"&gt;http://schemas.microsoft.com/cdo/configuration/sendpassword&lt;/A&gt;&lt;SPAN&gt;") = "*******" 'Type your acccount Password&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpusessl" rel="nofollow" target="_blank"&gt;http://schemas.microsoft.com/cdo/configuration/smtpusessl&lt;/A&gt;&lt;SPAN&gt;") = 1 &lt;/SPAN&gt;&lt;BR /&gt; msgConf.Fields.Update &lt;BR /&gt; &lt;BR /&gt; ' CREATE TABLE LOOP TO GET EMAIL ADDRESSES&lt;BR /&gt; set table = ActiveDocument.GetSheetObject( "TB01" )&lt;BR /&gt; &lt;BR /&gt; w = table.GetColumnCount&lt;BR /&gt; h = table.GetRowCount&lt;BR /&gt; &lt;BR /&gt; set CellMatrix = table.GetCells2(0,0,w,h)&lt;BR /&gt; &lt;BR /&gt; for RowIter=1 to h-1&lt;BR /&gt; &lt;BR /&gt; for ColIter=1 to 1&lt;BR /&gt; &lt;BR /&gt; LogAdd("Getting Email")&lt;BR /&gt; LogAdd((CellMatrix(RowIter)(ColIter).Text))&lt;BR /&gt; 'msgbox(CellMatrix(RowIter)(ColIter).Text)&lt;BR /&gt; &lt;BR /&gt; 'START MAILING PROCESS&lt;BR /&gt; objMsg.To = (CellMatrix(RowIter)(ColIter).Text)&lt;BR /&gt;&lt;SPAN&gt; objMsg.From = "&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:*******@gmail.com"&gt;*******@gmail.com&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;BR /&gt; objMsg.Subject = "Reports"&lt;BR /&gt; objMsg.HTMLBody = "&amp;lt;html&amp;gt;&amp;lt;body&amp;gt; Good Day, &amp;lt;br&amp;gt;&amp;lt;br&amp;gt; Please note the reports are now available, &amp;lt;br&amp;gt; Please find attached the summary and detail reports.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;Kind Regards&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt; &amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;"&lt;BR /&gt; objMsg.AddAttachment "C:\Users\FransJaco\Documents\testnew\" &amp;amp; Unique.text &amp;amp; ".pdf"&lt;BR /&gt; Set objMsg.Configuration = msgConf&lt;BR /&gt; 'SEND EMAIL&lt;BR /&gt; objMsg.Send&lt;BR /&gt; LogAdd("Mail Sent"&amp;amp; " " &amp;amp; (CellMatrix(RowIter)(ColIter).Text))&amp;nbsp; &lt;BR /&gt; &lt;BR /&gt; next&lt;BR /&gt; LogAdd("Next Email in Table")&lt;BR /&gt; next&lt;BR /&gt; LogAdd("Next Client in Array")&amp;nbsp; &lt;BR /&gt; next&lt;BR /&gt; &lt;BR /&gt; ' CLEAR EMAIL CACHE&lt;BR /&gt; Set objMsg = nothing &lt;BR /&gt; Set msgConf = nothing&lt;BR /&gt; &lt;BR /&gt; ' FINISH MAILING PROCESS&amp;nbsp; &lt;BR /&gt; LogAdd("Mailing Process Completed")&lt;BR /&gt; End sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Mar 2016 09:43:03 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-03-15T09:43:03Z</dc:date>
    <item>
      <title>Qlikview Macro Array Field Select</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Macro-Array-Field-Select/m-p/1047215#M931521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good day Guys&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you are doing good, I am battling with getting my Qlikview Macro to work, I have already tried and researched and tried again, really hoping some one can point me in the right direction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a model, with a rating system for dealers, I have attached it to this post.&lt;/P&gt;&lt;P&gt;I am running a few Macro's but two is important, and related to my question.&lt;/P&gt;&lt;P&gt;1. I run a macro to print a pdf report based on certain selection/criteria, this then saves the report to my local pc. This part works, each file is also uniquely named, as per the "unique" field on the ("DealerRating") table. This part is working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. My second macro should now go and email, each unique pdf to their related email address on the same table, ("DealerRating")&lt;/P&gt;&lt;P&gt;This is where I battle.&lt;/P&gt;&lt;P&gt;So below I start a loop which selects for each unique value on field "Unique",&lt;/P&gt;&lt;P&gt;I want to at this time declare another variable called "Email" which should contain the selected rows "Email" field value.&lt;/P&gt;&lt;P&gt;As with my actual record set there is 1000's of records, and hard coding is not a option, please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Code so far:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Set val=ActiveDocument.Fields("Unique").GetPossibleValues(20000)&lt;BR /&gt; For i = 0 to val.count-1 &lt;BR /&gt; set Unique = val.Item(i)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; ActiveDocument.Fields("Unique").Select Unique.text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set Email = ActiveDocument.Fields("Unique").GetPossibleValues(20000)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; objMsg.To = Email ' type to mail id&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt; objMsg.From = "This is the from email" 'type from mail id&lt;BR /&gt; objMsg.Subject = "Dealer Rating Reports" &lt;BR /&gt; objMsg.HTMLBody = "&amp;lt;html&amp;gt;&amp;lt;body&amp;gt; Good Day, &amp;lt;br&amp;gt;&amp;lt;br&amp;gt; Please note the Dealer Rating reports are now available, &amp;lt;br&amp;gt; Please find attached the summary and detail reports.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;Kind Regards&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt; &amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;objMsg.AddAttachment "C:\Users\FransJaco\Documents\testnew\"&amp;amp; Unique.text &amp;amp; ".pdf" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; Set objMsg.Configuration = msgConf &lt;BR /&gt; &lt;BR /&gt; ' Send &lt;BR /&gt; objMsg.Send &lt;BR /&gt; LogAdd("Mail Sent"&amp;amp; " " &amp;amp; Email.text)&lt;BR /&gt; 'Msgbox("Email send ok")&lt;BR /&gt; Next&lt;BR /&gt; Set objMsg = nothing &lt;BR /&gt; Set msgConf = nothing&lt;BR /&gt; 'End sub&lt;BR /&gt; rem added endsub jaco&lt;BR /&gt; 'Next&lt;BR /&gt; &lt;BR /&gt; LogAdd("Emails Sent Success")&lt;BR /&gt; End sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Macro-Array-Field-Select/m-p/1047215#M931521</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview Macro Array Field Select</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Macro-Array-Field-Select/m-p/1047216#M931522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;chk dis&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-4870"&gt;Useful Qlikview Macros&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Mar 2016 10:15:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Macro-Array-Field-Select/m-p/1047216#M931522</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-03-14T10:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview Macro Array Field Select</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Macro-Array-Field-Select/m-p/1047217#M931523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would rather use a tablebox to loop through like: &lt;A href="https://community.qlik.com/message/932331"&gt;Re: vb scrip to display name&lt;/A&gt; and for mailing might be this helpful: &lt;A href="https://community.qlik.com/message/296673"&gt;Re: Sending mails macro vbs&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Mar 2016 12:13:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Macro-Array-Field-Select/m-p/1047217#M931523</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-03-14T12:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview Macro Array Field Select</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Macro-Array-Field-Select/m-p/1047218#M931524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good day Marcus, Thanks for your help I finally got it working &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp; I have posted my code below if anyone else ever comes across this problem, I tried to comment where I can for easier reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub SendGMail ()&lt;BR /&gt; LogAdd("Starting Mailing Process")&lt;BR /&gt; &lt;BR /&gt; 'CLEAR ACTIVE DOCUMENT SELECTIONS&lt;BR /&gt; LogAdd("Clear all selections")&lt;BR /&gt; ActiveDocument.ClearAll true&lt;BR /&gt; LogAdd("Selections Cleared")&lt;BR /&gt; &lt;BR /&gt; ' CREATE ARRAY&lt;BR /&gt; Set val=ActiveDocument.Fields("Unique").GetPossibleValues(20000)&lt;BR /&gt; For i = 0 to val.count-1 &lt;BR /&gt; set Unique = val.Item(i)&lt;BR /&gt; 'select each one that's on the arraylist &lt;BR /&gt; ActiveDocument.Fields("Unique").Select Unique.text&lt;BR /&gt; LogAdd("Getting Client")&lt;BR /&gt; &lt;BR /&gt; ' CLEAR EMAIL CACHE -- Else it will cause multiple attachments to be sent in error&lt;BR /&gt; Set objMsg = nothing &lt;BR /&gt; Set msgConf = nothing&lt;BR /&gt; &lt;BR /&gt; ' RECONFIGURE EMAIL&lt;BR /&gt; Set objMsg = CreateObject("CDO.Message") &lt;BR /&gt; Set msgConf = CreateObject("CDO.Configuration") &lt;BR /&gt; &lt;BR /&gt; ' EMAIL SERVER CONFIGURATION&lt;BR /&gt;&lt;SPAN&gt; msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/sendusing" rel="nofollow" target="_blank"&gt;http://schemas.microsoft.com/cdo/configuration/sendusing&lt;/A&gt;&lt;SPAN&gt;") = 2 &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpserver" rel="nofollow" target="_blank"&gt;http://schemas.microsoft.com/cdo/configuration/smtpserver&lt;/A&gt;&lt;SPAN&gt;") = "smtp.gmail.com" &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpserverport" rel="nofollow" target="_blank"&gt;http://schemas.microsoft.com/cdo/configuration/smtpserverport&lt;/A&gt;&lt;SPAN&gt;") = 465&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpauthenticate" rel="nofollow" target="_blank"&gt;http://schemas.microsoft.com/cdo/configuration/smtpauthenticate&lt;/A&gt;&lt;SPAN&gt;") = 1 &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/sendusername" rel="nofollow" target="_blank"&gt;http://schemas.microsoft.com/cdo/configuration/sendusername&lt;/A&gt;&lt;SPAN&gt;") = "&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:****@gmail.com"&gt;****@gmail.com&lt;/A&gt;&lt;SPAN&gt;" 'type your mail id&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/sendpassword" rel="nofollow" target="_blank"&gt;http://schemas.microsoft.com/cdo/configuration/sendpassword&lt;/A&gt;&lt;SPAN&gt;") = "*******" 'Type your acccount Password&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpusessl" rel="nofollow" target="_blank"&gt;http://schemas.microsoft.com/cdo/configuration/smtpusessl&lt;/A&gt;&lt;SPAN&gt;") = 1 &lt;/SPAN&gt;&lt;BR /&gt; msgConf.Fields.Update &lt;BR /&gt; &lt;BR /&gt; ' CREATE TABLE LOOP TO GET EMAIL ADDRESSES&lt;BR /&gt; set table = ActiveDocument.GetSheetObject( "TB01" )&lt;BR /&gt; &lt;BR /&gt; w = table.GetColumnCount&lt;BR /&gt; h = table.GetRowCount&lt;BR /&gt; &lt;BR /&gt; set CellMatrix = table.GetCells2(0,0,w,h)&lt;BR /&gt; &lt;BR /&gt; for RowIter=1 to h-1&lt;BR /&gt; &lt;BR /&gt; for ColIter=1 to 1&lt;BR /&gt; &lt;BR /&gt; LogAdd("Getting Email")&lt;BR /&gt; LogAdd((CellMatrix(RowIter)(ColIter).Text))&lt;BR /&gt; 'msgbox(CellMatrix(RowIter)(ColIter).Text)&lt;BR /&gt; &lt;BR /&gt; 'START MAILING PROCESS&lt;BR /&gt; objMsg.To = (CellMatrix(RowIter)(ColIter).Text)&lt;BR /&gt;&lt;SPAN&gt; objMsg.From = "&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:*******@gmail.com"&gt;*******@gmail.com&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;BR /&gt; objMsg.Subject = "Reports"&lt;BR /&gt; objMsg.HTMLBody = "&amp;lt;html&amp;gt;&amp;lt;body&amp;gt; Good Day, &amp;lt;br&amp;gt;&amp;lt;br&amp;gt; Please note the reports are now available, &amp;lt;br&amp;gt; Please find attached the summary and detail reports.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;Kind Regards&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt; &amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;"&lt;BR /&gt; objMsg.AddAttachment "C:\Users\FransJaco\Documents\testnew\" &amp;amp; Unique.text &amp;amp; ".pdf"&lt;BR /&gt; Set objMsg.Configuration = msgConf&lt;BR /&gt; 'SEND EMAIL&lt;BR /&gt; objMsg.Send&lt;BR /&gt; LogAdd("Mail Sent"&amp;amp; " " &amp;amp; (CellMatrix(RowIter)(ColIter).Text))&amp;nbsp; &lt;BR /&gt; &lt;BR /&gt; next&lt;BR /&gt; LogAdd("Next Email in Table")&lt;BR /&gt; next&lt;BR /&gt; LogAdd("Next Client in Array")&amp;nbsp; &lt;BR /&gt; next&lt;BR /&gt; &lt;BR /&gt; ' CLEAR EMAIL CACHE&lt;BR /&gt; Set objMsg = nothing &lt;BR /&gt; Set msgConf = nothing&lt;BR /&gt; &lt;BR /&gt; ' FINISH MAILING PROCESS&amp;nbsp; &lt;BR /&gt; LogAdd("Mailing Process Completed")&lt;BR /&gt; End sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Mar 2016 09:43:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Macro-Array-Field-Select/m-p/1047218#M931524</guid>
      <dc:creator />
      <dc:date>2016-03-15T09:43:03Z</dc:date>
    </item>
  </channel>
</rss>

