<?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 Macro event doc.fields in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Macro-event-doc-fields/m-p/199817#M58589</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks John!&lt;/P&gt;&lt;P&gt;Devang,&lt;/P&gt;&lt;P&gt;The test qvw is throwing out an error. Are the functions array() and MultipleFieldSearch() valid functions?&lt;/P&gt;&lt;P&gt;I tried looking up the APi for both 8.5/9.0, but coudn't trace them?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Siddharth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Jun 2010 22:00:39 GMT</pubDate>
    <dc:creator>siddharth_kulka</dc:creator>
    <dc:date>2010-06-30T22:00:39Z</dc:date>
    <item>
      <title>Macro event doc.fields</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-event-doc-fields/m-p/199814#M58586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Business Rule:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;There is a generic rating field one tab with values 1,2,3,4,5,6,7,8,9,10&lt;/P&gt;&lt;P&gt;On a different tab, there are product wise ratings Product A: 1,2,3,4,5,6,7,8,9,10 Product B: 1,2,3,4,5,6,7,8,9,10&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Goal:&lt;/STRONG&gt; If I select 10 in generic field, 10 should be selected in product A and product B list boxes&lt;/P&gt;&lt;P&gt;I want to pass multiple fields(parameters) in doc.fields event, but I don't think it is permitted. Is there a work around? I am achieving my goal by writing multiple doc.field statements, but its not the best way to do it, one feels&lt;/P&gt;&lt;P&gt;Below is working code, but is there any way to avoid these multiple doc.fields statements?&lt;/P&gt;&lt;P&gt;set Doc = ActiveDocument&lt;BR /&gt;set F1_Selections = Doc.fields("CPR_Rating").GetSelectedValues&lt;BR /&gt;set F2 = doc.fields("A")&lt;BR /&gt;set F3 = doc.fields("B")&lt;BR /&gt;F2.SelectValues F1_Selections&lt;BR /&gt;F3.SelectValues F1_Selections&lt;/P&gt;&lt;P&gt;Any help will be appreciated.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Siddharth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jun 2010 19:54:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-event-doc-fields/m-p/199814#M58586</guid>
      <dc:creator>siddharth_kulka</dc:creator>
      <dc:date>2010-06-23T19:54:47Z</dc:date>
    </item>
    <item>
      <title>Macro event doc.fields</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-event-doc-fields/m-p/199815#M58587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, there might (or might not) be a better way, but that IS basically how I've done it in the past when I've needed to syncrhonize fields without actually making them the same field in the model.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jun 2010 20:10:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-event-doc-fields/m-p/199815#M58587</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-06-23T20:10:55Z</dc:date>
    </item>
    <item>
      <title>Macro event doc.fields</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-event-doc-fields/m-p/199816#M58588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siddharth,&lt;/P&gt;&lt;P&gt;Please see attaced qvw, I hope you are looking for this. I have trigger on ValGen filed chage, it calls macro SelectTest and selects corosponding vales in producta and productb. This is just to give you an idea.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jun 2010 20:56:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-event-doc-fields/m-p/199816#M58588</guid>
      <dc:creator />
      <dc:date>2010-06-23T20:56:30Z</dc:date>
    </item>
    <item>
      <title>Macro event doc.fields</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-event-doc-fields/m-p/199817#M58589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks John!&lt;/P&gt;&lt;P&gt;Devang,&lt;/P&gt;&lt;P&gt;The test qvw is throwing out an error. Are the functions array() and MultipleFieldSearch() valid functions?&lt;/P&gt;&lt;P&gt;I tried looking up the APi for both 8.5/9.0, but coudn't trace them?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Siddharth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jun 2010 22:00:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-event-doc-fields/m-p/199817#M58589</guid>
      <dc:creator>siddharth_kulka</dc:creator>
      <dc:date>2010-06-30T22:00:39Z</dc:date>
    </item>
  </channel>
</rss>

