<?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: Create a folder in system by using macro code in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252282#M95629</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Kaushik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got an error when i am trying to create two folders at a time. I done below procedure, pls go through with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: If no folder of ABC then it is generating error message. Otherwise if it contains ABC folder then it is not showing error and creating the Username folder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example Var = =QvWorkPath &amp;amp;'\ABC'&amp;amp;&amp;nbsp; QVUser() &amp;amp;'\'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Here ABC is a new directory name. In that i am trying to create another folder with Username.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub abc&lt;/P&gt;&lt;P&gt;set Var = ActiveDocument.GetVariable("Path")&lt;/P&gt;&lt;P&gt;dim filesys, newfolder, newfolderpath&lt;/P&gt;&lt;P&gt;newfolderpath = Var.GetContent.String&lt;/P&gt;&lt;P&gt;set filesys=CreateObject("Scripting.FileSystemObject")&lt;/P&gt;&lt;P&gt;If Not filesys.FolderExists(newfolderpath) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Set newfolder = filesys.CreateFolder(newfolderpath)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; msgbox("A new folder has been created at: " &amp;amp; newfolderpath)&lt;/P&gt;&lt;P&gt;End If&lt;/P&gt;&lt;P&gt;End sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Jul 2011 05:12:09 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-07-12T05:12:09Z</dc:date>
    <item>
      <title>Create a folder in system by using macro code</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252275#M95622</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;how can i create&amp;nbsp;&amp;nbsp; a folder in my computer, within the existed QVW file.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks in advance for your replies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2011 08:14:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252275#M95622</guid>
      <dc:creator />
      <dc:date>2011-07-04T08:14:56Z</dc:date>
    </item>
    <item>
      <title>Create a folder in system by using macro code</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252276#M95623</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;&amp;nbsp;&amp;nbsp;&amp;nbsp; Here is the macro do create a folder.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Sub abc&lt;/P&gt;&lt;P&gt;dim filesys, newfolder, newfolderpath &lt;/P&gt;&lt;P&gt;newfolderpath = "D:\myfolder" &lt;/P&gt;&lt;P&gt;set filesys=CreateObject("Scripting.FileSystemObject") &lt;/P&gt;&lt;P&gt;If Not filesys.FolderExists(newfolderpath) Then &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Set newfolder = filesys.CreateFolder(newfolderpath) &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; msgbox("A new folder has been created at: " &amp;amp; newfolderpath) &lt;/P&gt;&lt;P&gt;End If&lt;/P&gt;&lt;P&gt;End sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Make sure that you have given a full right to run macro.i.e System Access in Macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2011 08:23:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252276#M95623</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2011-07-04T08:23:21Z</dc:date>
    </item>
    <item>
      <title>Create a folder in system by using macro code</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252277#M95624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Kaushik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for Reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of providing the path of folder like this i.e;&amp;nbsp; newfolderpath = "D:\myfolder" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we provide the path where the Current QVW exists i.e; where the current working QVW file exists there we need to provide the path.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2011 08:54:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252277#M95624</guid>
      <dc:creator />
      <dc:date>2011-07-04T08:54:03Z</dc:date>
    </item>
    <item>
      <title>Re: Create a folder in system by using macro code</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252278#M95625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kaushik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of providing the path directly i.e;&amp;nbsp; newfolderpath = "D:\myfolder" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we provide the path based on Current QVW file location i.e; it should create a folder where the current working QVW file is located.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2011 08:56:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252278#M95625</guid>
      <dc:creator />
      <dc:date>2011-07-04T08:56:56Z</dc:date>
    </item>
    <item>
      <title>Create a folder in system by using macro code</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252279#M95626</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;Here is the macro for getting the applications path.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set temp = ActiveDocument.GetApplication.GetProperties&lt;/P&gt;&lt;P&gt;set path = temp.ApplicationPath&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2011 09:21:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252279#M95626</guid>
      <dc:creator />
      <dc:date>2011-07-04T09:21:11Z</dc:date>
    </item>
    <item>
      <title>Create a folder in system by using macro code</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252280#M95627</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;&amp;nbsp;&amp;nbsp; Create a variable which will have qvpath stores.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; For example Var = =QvWorkPath &amp;amp;'\ABC'&amp;amp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Here ABC is a new directory name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; And then use below macro.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Sub abc&lt;/P&gt;&lt;P&gt;set Var = ActiveDocument.GetVariable("Path")&lt;/P&gt;&lt;P&gt;dim filesys, newfolder, newfolderpath&lt;/P&gt;&lt;P&gt;newfolderpath = Var.GetContent.String&lt;/P&gt;&lt;P&gt;set filesys=CreateObject("Scripting.FileSystemObject")&lt;/P&gt;&lt;P&gt;If Not filesys.FolderExists(newfolderpath) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Set newfolder = filesys.CreateFolder(newfolderpath)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; msgbox("A new folder has been created at: " &amp;amp; newfolderpath)&lt;/P&gt;&lt;P&gt;End If&lt;/P&gt;&lt;P&gt;End sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2011 09:26:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252280#M95627</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2011-07-04T09:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: Create a folder in system by using macro code</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252281#M95628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kaushik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, it is working in my QVW file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2011 10:30:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252281#M95628</guid>
      <dc:creator />
      <dc:date>2011-07-04T10:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: Create a folder in system by using macro code</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252282#M95629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Kaushik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got an error when i am trying to create two folders at a time. I done below procedure, pls go through with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: If no folder of ABC then it is generating error message. Otherwise if it contains ABC folder then it is not showing error and creating the Username folder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example Var = =QvWorkPath &amp;amp;'\ABC'&amp;amp;&amp;nbsp; QVUser() &amp;amp;'\'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Here ABC is a new directory name. In that i am trying to create another folder with Username.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub abc&lt;/P&gt;&lt;P&gt;set Var = ActiveDocument.GetVariable("Path")&lt;/P&gt;&lt;P&gt;dim filesys, newfolder, newfolderpath&lt;/P&gt;&lt;P&gt;newfolderpath = Var.GetContent.String&lt;/P&gt;&lt;P&gt;set filesys=CreateObject("Scripting.FileSystemObject")&lt;/P&gt;&lt;P&gt;If Not filesys.FolderExists(newfolderpath) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Set newfolder = filesys.CreateFolder(newfolderpath)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; msgbox("A new folder has been created at: " &amp;amp; newfolderpath)&lt;/P&gt;&lt;P&gt;End If&lt;/P&gt;&lt;P&gt;End sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2011 05:12:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252282#M95629</guid>
      <dc:creator />
      <dc:date>2011-07-12T05:12:09Z</dc:date>
    </item>
    <item>
      <title>Create a folder in system by using macro code</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252283#M95630</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;&amp;nbsp;&amp;nbsp; As you said.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; NOTE: If no folder of ABC then it is generating error message. Otherwise if it contains ABC folder then it is not showing error and creating the Username folder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; This is right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If there is no Directory with name ABC then how can it create a new directory within it, and thus it is giving you an error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; So make sure that you have ABC directory created before you run the macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2011 06:07:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252283#M95630</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2011-07-12T06:07:41Z</dc:date>
    </item>
    <item>
      <title>Re: Create a folder in system by using macro code</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252284#M95631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kaushik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your suggestion&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried what you said and its working. I given macro code like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'*****Creating Group1 Folder*****&amp;nbsp;&amp;nbsp; //For Variable vGroup1Dir=&lt;STRONG&gt; &lt;SPAN style="font-size: 8pt;"&gt;=&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style="color: #808080; font-size: 8pt;"&gt;&lt;STRONG&gt;&lt;EM style="color: #808080; font-size: 8pt;"&gt;QvWorkPath&lt;/EM&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;STRONG style="color: #808080; font-size: 8pt;"&gt;&lt;STRONG style="color: #808080; font-size: 8pt;"&gt; &lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;EM style="color: #808080; font-size: 8pt;"&gt;&lt;EM style="color: #808080; font-size: 8pt;"&gt; &lt;/EM&gt;&lt;/EM&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;amp;'\Group1' &lt;SPAN style="font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;Sub Group1Dir&lt;BR /&gt;Set Var1 = ActiveDocument.Variables("vGroup1Dir")&lt;P&gt;&lt;/P&gt;&lt;P&gt;dim filesys, newfolder, newfolderpath&lt;BR /&gt;newfolderpath = Var1.GetContent.String&lt;BR /&gt;Set filesys = CreateObject("Scripting.FileSystemObject")&lt;/P&gt;&lt;P&gt;If Not filesys.FolderExists(newfolderpath) Then&lt;BR /&gt;Set newfolder = filesys.CreateFolder(newfolderpath)&lt;BR /&gt;End If&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;'*****Creating Group1\User Folder*****&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //For Variable vGroup1Users=&lt;STRONG&gt; &lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="font-size: 8pt;"&gt;=&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;SPAN style="color: #808080; font-size: 8pt;"&gt;QvWorkPath&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;amp;'\Group1\'&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;QVUser&lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;() &lt;SPAN style="font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;Sub Group1Users&lt;BR /&gt;Set Var3 = ActiveDocument.Variables("vGroup1Users")&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dim filesys, newfolder, newfolderpath&lt;BR /&gt;newfolderpath = Var3.GetContent.String&lt;BR /&gt;Set filesys = CreateObject("Scripting.FileSystemObject")&lt;/P&gt;&lt;P&gt;If Not filesys.FolderExists(newfolderpath) Then&lt;BR /&gt;Set newfolder = filesys.CreateFolder(newfolderpath)&lt;BR /&gt;msgbox("A New Folder is Created at : " &amp;amp;newfolderpath)&lt;BR /&gt;End If&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;'*****Creating Group1\User\Text Folder*****&lt;BR /&gt;Sub TabDelimitedTextGroup1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set v1 = Activedocument.Variables("vGroup1Users")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set obj1 = ActiveDocument.GetSheetObject("CH46")&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; obj1.Export&amp;nbsp;&amp;nbsp; v1.GetContent.String &amp;amp;"\"&amp;nbsp; &amp;amp;Date()&amp;amp;"_"&amp;amp;replace(Time(),":","")&amp;amp;".txt",","&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MsgBox("Data Has Been Transfered")&lt;BR /&gt;End Sub &lt;/P&gt;&lt;DIV class="mcePaste" id="_mcePaste" style="position: absolute; width: 1px; height: 1px; overflow: hidden; top: 0px; left: -10000px;"&gt;﻿&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2011 06:40:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252284#M95631</guid>
      <dc:creator />
      <dc:date>2011-07-12T06:40:18Z</dc:date>
    </item>
    <item>
      <title>Create a folder in system by using macro code</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252285#M95632</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;&amp;nbsp;&amp;nbsp; Thats good, nice work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2011 06:43:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-folder-in-system-by-using-macro-code/m-p/252285#M95632</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2011-07-12T06:43:29Z</dc:date>
    </item>
  </channel>
</rss>

