<?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: vba search and table creation in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/vba-search-and-table-creation/m-p/1586278#M596270</link>
    <description>&lt;P&gt;Can you use the built in Search Object instead of a macro for this?&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2019 14:46:32 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2019-05-29T14:46:32Z</dc:date>
    <item>
      <title>vba search and table creation</title>
      <link>https://community.qlik.com/t5/QlikView/vba-search-and-table-creation/m-p/1586250#M596269</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I have a data model loaded which consists of individuals and their attributes - first name, last name, company, dob,&amp;nbsp; individual ID, etc....&lt;/P&gt;&lt;P&gt;I'm attempting to make a search-like function using macros where a user inputs a a variable into an input box and clicks a button.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This button will search for that variable in the data set and will return a match.&amp;nbsp; For example, if the user inputs 'Robert' as the search variable, the vba/macro search the data model and return the search results (searching each field):&lt;/P&gt;&lt;P&gt;- &lt;U&gt;fName&lt;/U&gt; &lt;U&gt;lName&lt;/U&gt;&lt;BR /&gt;- James Roberts&amp;nbsp;&lt;BR /&gt;- Robert Williams&lt;/P&gt;&lt;P&gt;Is this possible to do with Qlikview / VBA?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 14:12:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/vba-search-and-table-creation/m-p/1586250#M596269</guid>
      <dc:creator>veldetta</dc:creator>
      <dc:date>2019-05-29T14:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: vba search and table creation</title>
      <link>https://community.qlik.com/t5/QlikView/vba-search-and-table-creation/m-p/1586278#M596270</link>
      <description>&lt;P&gt;Can you use the built in Search Object instead of a macro for this?&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 14:46:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/vba-search-and-table-creation/m-p/1586278#M596270</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2019-05-29T14:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: vba search and table creation</title>
      <link>https://community.qlik.com/t5/QlikView/vba-search-and-table-creation/m-p/1586293#M596271</link>
      <description>&lt;P&gt;The end users would like an input box with a button... which in turn will produce the search results.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far, I have this code but it currently only searches 1 field:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Sub SelectVar
	ActiveDocument.Fields("Field").Clear
	set vSel = ActiveDocument.Variables("vSearchName")
	ActiveDocument.Fields("Field").Select vSel.GetContent.String


End sub&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 15:06:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/vba-search-and-table-creation/m-p/1586293#M596271</guid>
      <dc:creator>veldetta</dc:creator>
      <dc:date>2019-05-29T15:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: vba search and table creation</title>
      <link>https://community.qlik.com/t5/QlikView/vba-search-and-table-creation/m-p/1586323#M596272</link>
      <description>&lt;P&gt;"&lt;SPAN&gt;The end users would like an input box with a button"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Isn't that what a search object is? (minus the button)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 16:23:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/vba-search-and-table-creation/m-p/1586323#M596272</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2019-05-29T16:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: vba search and table creation</title>
      <link>https://community.qlik.com/t5/QlikView/vba-search-and-table-creation/m-p/1586328#M596273</link>
      <description>&lt;P&gt;I understand what your suggestion is... the search box.&amp;nbsp; What I'm saying is I'm looking for another alternative other than the search box which is an input box, a button with VBA code in the background.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 16:46:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/vba-search-and-table-creation/m-p/1586328#M596273</guid>
      <dc:creator>veldetta</dc:creator>
      <dc:date>2019-05-29T16:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: vba search and table creation</title>
      <link>https://community.qlik.com/t5/QlikView/vba-search-and-table-creation/m-p/1586390#M596274</link>
      <description>&lt;P&gt;Got it.&amp;nbsp; What you can do with the macro code is loop through a list of fields and use the Field.SearchFor method to search each field in turn and then consolidate the results.&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 19:06:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/vba-search-and-table-creation/m-p/1586390#M596274</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2019-05-29T19:06:25Z</dc:date>
    </item>
    <item>
      <title>Re: vba search and table creation</title>
      <link>https://community.qlik.com/t5/QlikView/vba-search-and-table-creation/m-p/1593177#M596275</link>
      <description>&lt;P&gt;Thanks! I used your recommendation.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jun 2019 15:39:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/vba-search-and-table-creation/m-p/1593177#M596275</guid>
      <dc:creator>veldetta</dc:creator>
      <dc:date>2019-06-18T15:39:23Z</dc:date>
    </item>
  </channel>
</rss>

