<?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: cut paste macro vbs in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/cut-paste-macro-vbs/m-p/634556#M232741</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cómo va? Al final lo conseguí, parece que tenía celdas combinadas dentro del rango que estaba cortando y la celda que seleccionaba para copiar estaba dentro de esas celdas combinadas, por eso no la localizaba....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gracias igual! Suerte con la certificación!&lt;/P&gt;&lt;P&gt;Abzo!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Jun 2014 12:58:03 GMT</pubDate>
    <dc:creator>chematos</dc:creator>
    <dc:date>2014-06-02T12:58:03Z</dc:date>
    <item>
      <title>cut paste macro vbs</title>
      <link>https://community.qlik.com/t5/QlikView/cut-paste-macro-vbs/m-p/634554#M232739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know how to do a copy + paste in vbs but I need to know how to do a CUT + paste. I though it was the same than copy + paste but it doesn't work. Also I tried to do this and didn't work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; wrksht.Range("B"&amp;amp;varRowCount+8&amp;amp;":"&amp;amp;varColCount2&amp;amp;varRowCount+15).&lt;STRONG&gt;Select&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;STRONG&gt;Selection.cut&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; wrksht.Range("C"&amp;amp;varRowCount+8).&lt;STRONG&gt;Select&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; wrksht.&lt;STRONG&gt;paste&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate any help &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2014 21:00:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/cut-paste-macro-vbs/m-p/634554#M232739</guid>
      <dc:creator>chematos</dc:creator>
      <dc:date>2014-05-30T21:00:28Z</dc:date>
    </item>
    <item>
      <title>Re: cut paste macro vbs</title>
      <link>https://community.qlik.com/t5/QlikView/cut-paste-macro-vbs/m-p/634555#M232740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Chema, como estas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;el select te lo hace bien? es decir toma y ubica la celda que queres cortar bien?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;probaste hacerlo de una&amp;nbsp; y sin seleccionarla?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE style="font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif; background-position: initial;"&gt;&lt;SPAN style="color: #3d3d3d; background: transparent; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; wrksht.&lt;/SPAN&gt;&lt;SPAN class="pln" style="background: transparent;"&gt;Range&lt;/SPAN&gt;&lt;SPAN class="pun" style="background: transparent;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="str" style="color: #800000; background: transparent;"&gt;"A1:A12"&lt;/SPAN&gt;&lt;SPAN class="pun" style="background: transparent;"&gt;).&lt;/SPAN&gt;&lt;SPAN class="pln" style="background: transparent;"&gt;Cut&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="pun" style="background: transparent;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; wrksht.&lt;/SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="background: transparent;"&gt;Range&lt;/SPAN&gt;&lt;SPAN class="pun" style="background: transparent;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="str" style="color: #800000; background: transparent;"&gt;"A1:L1"&lt;/SPAN&gt;&lt;SPAN class="pun" style="background: transparent;"&gt;).&lt;/SPAN&gt;&lt;SPAN class="pln" style="background: transparent;"&gt;Paste&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pln" style="background: transparent;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pln" style="background: transparent;"&gt;sera un tema de que no esta encontrando el range correcto?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pln" style="background: transparent;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pln" style="background: transparent;"&gt;en este otro ejemplo hace el cut y luego se para en la celda donde sera pegado (select) y luego pega&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pln" style="background: transparent;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pln" style="background: transparent;"&gt;&lt;CODE style="font-family: Courier, monospace; color: #0b374d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;wrksht.&lt;/SPAN&gt;.Range("B7").Cut&lt;BR /&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;wrksht.&lt;/SPAN&gt;.Range("B5").Select&lt;BR /&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;wrksht.&lt;/SPAN&gt;.Paste&lt;/CODE&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pln" style="background: transparent;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pln" style="background: transparent;"&gt;Cualquier cosa avisa&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pln" style="background: transparent;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pln" style="background: transparent;"&gt;Abrazo grande&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pln" style="background: transparent;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pln" style="background: transparent;"&gt;Fernando&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 May 2014 17:40:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/cut-paste-macro-vbs/m-p/634555#M232740</guid>
      <dc:creator>fkeuroglian</dc:creator>
      <dc:date>2014-05-31T17:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: cut paste macro vbs</title>
      <link>https://community.qlik.com/t5/QlikView/cut-paste-macro-vbs/m-p/634556#M232741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cómo va? Al final lo conseguí, parece que tenía celdas combinadas dentro del rango que estaba cortando y la celda que seleccionaba para copiar estaba dentro de esas celdas combinadas, por eso no la localizaba....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gracias igual! Suerte con la certificación!&lt;/P&gt;&lt;P&gt;Abzo!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jun 2014 12:58:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/cut-paste-macro-vbs/m-p/634556#M232741</guid>
      <dc:creator>chematos</dc:creator>
      <dc:date>2014-06-02T12:58:03Z</dc:date>
    </item>
  </channel>
</rss>

