<?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 Copy coordinates to other objects in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Copy-coordinates-to-other-objects/m-p/1196639#M878489</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;/P&gt;&lt;P&gt;Let's say I have 3 objects on a sheet and call them (o1, o2 and o3).&amp;nbsp; Make the assumption o2 sits at&lt;/P&gt;&lt;P&gt;these coordinates (10,20,30,40).&amp;nbsp; Is there a quick way I can apply these same coordinates to o3 instead of&lt;/P&gt;&lt;P&gt;manually entering them?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Copy coordinates to other objects</title>
      <link>https://community.qlik.com/t5/QlikView/Copy-coordinates-to-other-objects/m-p/1196639#M878489</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;/P&gt;&lt;P&gt;Let's say I have 3 objects on a sheet and call them (o1, o2 and o3).&amp;nbsp; Make the assumption o2 sits at&lt;/P&gt;&lt;P&gt;these coordinates (10,20,30,40).&amp;nbsp; Is there a quick way I can apply these same coordinates to o3 instead of&lt;/P&gt;&lt;P&gt;manually entering them?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&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/Copy-coordinates-to-other-objects/m-p/1196639#M878489</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Copy coordinates to other objects</title>
      <link>https://community.qlik.com/t5/QlikView/Copy-coordinates-to-other-objects/m-p/1196640#M878490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The simple answer is not.&lt;/P&gt;&lt;P&gt;You can not create variables or change all at the same time.&lt;/P&gt;&lt;P&gt;The ways of doing would be:&lt;/P&gt;&lt;P&gt;VBA - create 3 objects at the same location.&lt;/P&gt;&lt;P&gt;Take a screenshot of the first object and then apply the same&amp;nbsp; coordinates to others(yours are the simple one but in case you had a more complicated parameters.&lt;/P&gt;&lt;P&gt;I'm using this method quite often.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2016 19:06:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Copy-coordinates-to-other-objects/m-p/1196640#M878490</guid>
      <dc:creator>robert_mika</dc:creator>
      <dc:date>2016-10-13T19:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: Copy coordinates to other objects</title>
      <link>https://community.qlik.com/t5/QlikView/Copy-coordinates-to-other-objects/m-p/1196641#M878491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;it can be useful:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUB&amp;nbsp; Various&lt;/P&gt;&lt;P&gt;set sh = ActiveDocument.ActiveSheet&lt;/P&gt;&lt;P&gt;for i = 0 to sh.NoOfSheetObjects-1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set obj = sh.SheetObjects(i)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pos = obj.GetRect&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pos.Top = 100'pos.Top + 20&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pos.Left = pos.Left + 15&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; obj.SetRect pos&lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2016 23:19:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Copy-coordinates-to-other-objects/m-p/1196641#M878491</guid>
      <dc:creator>el_aprendiz111</dc:creator>
      <dc:date>2016-10-13T23:19:34Z</dc:date>
    </item>
    <item>
      <title>Re: Copy coordinates to other objects</title>
      <link>https://community.qlik.com/t5/QlikView/Copy-coordinates-to-other-objects/m-p/1196642#M878492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would you mind posting a sample qvw file so I can checkout your technique?&amp;nbsp; I'm new to QV but I can &lt;/P&gt;&lt;P&gt;understand code if I see it.&amp;nbsp; Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Oct 2016 12:33:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Copy-coordinates-to-other-objects/m-p/1196642#M878492</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-14T12:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: Copy coordinates to other objects</title>
      <link>https://community.qlik.com/t5/QlikView/Copy-coordinates-to-other-objects/m-p/1196643#M878493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;fer fer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It looks your sub() is iterating through all the objects on the sheet and setting them to the coordinates defined by&lt;/P&gt;&lt;P&gt;"pos".&amp;nbsp; Is this correct?&amp;nbsp; What about just a specific object?&amp;nbsp; Is there a property of the "obj" to evaluate the object name?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Oct 2016 12:36:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Copy-coordinates-to-other-objects/m-p/1196643#M878493</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-14T12:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: Copy coordinates to other objects</title>
      <link>https://community.qlik.com/t5/QlikView/Copy-coordinates-to-other-objects/m-p/1196644#M878494</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;IMG alt="Makro_Height.gif" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/140671_Makro_Height.gif" style="height: 532px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Oct 2016 15:49:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Copy-coordinates-to-other-objects/m-p/1196644#M878494</guid>
      <dc:creator>el_aprendiz111</dc:creator>
      <dc:date>2016-10-14T15:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: Copy coordinates to other objects</title>
      <link>https://community.qlik.com/t5/QlikView/Copy-coordinates-to-other-objects/m-p/1196645#M878495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;fer fer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks so much for spending your time to create this video.&amp;nbsp; I am going to try to follow it and see if I get it&lt;/P&gt;&lt;P&gt;working the way I need it.&amp;nbsp; Will follow up again next&amp;nbsp; time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Oct 2016 17:28:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Copy-coordinates-to-other-objects/m-p/1196645#M878495</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-14T17:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: Copy coordinates to other objects</title>
      <link>https://community.qlik.com/t5/QlikView/Copy-coordinates-to-other-objects/m-p/1196646#M878496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The code below will create 3 text object in the same position&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="font-size: 13.3333px;"&gt;Sub Textboxes&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; for i = 1 to 3&lt;/P&gt;&lt;P&gt;&amp;nbsp; set mytext = ActiveDocument.ActiveSheet.CreateTextObject&lt;/P&gt;&lt;P&gt;&amp;nbsp; strObjID = mytext.GetObjectID&lt;/P&gt;&lt;P&gt;&amp;nbsp; set fr = mytext.GetFrameDef&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pos = fr.Rect&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pos.Top = 60&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pos.Left = 60&lt;/P&gt;&lt;P&gt;&amp;nbsp; pos.Width = 160&lt;/P&gt;&lt;P&gt;&amp;nbsp; pos.Height = 190&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mytext.SetFrameDef fr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Oct 2016 19:44:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Copy-coordinates-to-other-objects/m-p/1196646#M878496</guid>
      <dc:creator>robert_mika</dc:creator>
      <dc:date>2016-10-14T19:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: Copy coordinates to other objects</title>
      <link>https://community.qlik.com/t5/QlikView/Copy-coordinates-to-other-objects/m-p/1196647#M878497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Robert.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will follow up in the next few days as I'm still exploring all the suggestion posted here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Oct 2016 19:52:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Copy-coordinates-to-other-objects/m-p/1196647#M878497</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-14T19:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: Copy coordinates to other objects</title>
      <link>https://community.qlik.com/t5/QlikView/Copy-coordinates-to-other-objects/m-p/1196648#M878498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be try this also,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make one object as a proper position. then select all other objects . Make it as 'Align Left' , then 'Align top' using design option&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Oct 2016 20:25:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Copy-coordinates-to-other-objects/m-p/1196648#M878498</guid>
      <dc:creator>settu_periasamy</dc:creator>
      <dc:date>2016-10-14T20:25:19Z</dc:date>
    </item>
  </channel>
</rss>

