<?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 how to read a particular cell from an excel sheet using Qlikview in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145405#M24129</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;When i m loading the above scriptin my document ,i m getting a error&lt;/P&gt;&lt;P&gt;Object required: 'ActiveDocument.Variables(...)'&lt;/P&gt;&lt;P&gt;in this line&lt;/P&gt;&lt;P&gt;ActiveDocument.Variables("vCellContents").SetContent oSH.Range("A2"), true&lt;/P&gt;&lt;P&gt;How can i get rid of this?&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Jun 2009 11:54:51 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-06-03T11:54:51Z</dc:date>
    <item>
      <title>how to read a particular cell from an excel sheet using Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145402#M24126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I a have an excel sheet as source and i have to fetch data conditionaly from this excel sheet.&lt;/P&gt;&lt;P&gt;Depending upon the value of a particular cell i have to write some code can any one help me out that how i can refer to the particula cell in an excel sheet through coding in qwlikview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 14:20:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145402#M24126</guid>
      <dc:creator />
      <dc:date>2009-05-29T14:20:13Z</dc:date>
    </item>
    <item>
      <title>how to read a particular cell from an excel sheet using Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145403#M24127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is is definitely possible. Use wizard to open table file, and modify Options - Labels and header size. For example, if I want to get cell B5, the script looks this:&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;first 1 // need only one row&lt;BR /&gt;LOAD&lt;BR /&gt; @2 // only column B&lt;BR /&gt;FROM test.xls (biff, header is 4 lines, no labels, table is Sheet1$) // goes to line 5&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 May 2009 02:55:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145403#M24127</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-30T02:55:12Z</dc:date>
    </item>
    <item>
      <title>how to read a particular cell from an excel sheet using Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145404#M24128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It can also be done from within a macro.&lt;/P&gt;&lt;P&gt;Sub GetCellContents&lt;/P&gt;&lt;P&gt;Set oXL=CreateObject("Excel.Application")&lt;/P&gt;&lt;P&gt;' f_name=oXL.GetOpenFilename("All Files (*.*),*.*",,"Select file",False)&lt;BR /&gt;f_name="C:\File.xls"&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;If f_name="False" then&lt;BR /&gt; 'user cancelled out of dialog box&lt;BR /&gt; Set oXL=nothing&lt;BR /&gt; Exit sub&lt;BR /&gt;End If&lt;/P&gt;&lt;P&gt;Set oWB=oXL.Workbooks.Open(f_name)&lt;BR /&gt;Set oSH=oWB.Worksheets.Item(1)&lt;/P&gt;&lt;P&gt;ActiveDocument.Variables("vCellContents").SetContent oSH.Range("A2"), true&lt;/P&gt;&lt;P&gt;oWB.Close&lt;/P&gt;&lt;P&gt;Set oSH=nothing&lt;BR /&gt;Set oWB=nothing&lt;BR /&gt;Set oXL=nothing&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;Note: the commented "f_name=" line would allow the user to choose the file. The one not commented is for a predefined file. The "if f_name" block is not needed for a predefined file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 May 2009 03:36:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145404#M24128</guid>
      <dc:creator />
      <dc:date>2009-05-30T03:36:25Z</dc:date>
    </item>
    <item>
      <title>how to read a particular cell from an excel sheet using Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145405#M24129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;When i m loading the above scriptin my document ,i m getting a error&lt;/P&gt;&lt;P&gt;Object required: 'ActiveDocument.Variables(...)'&lt;/P&gt;&lt;P&gt;in this line&lt;/P&gt;&lt;P&gt;ActiveDocument.Variables("vCellContents").SetContent oSH.Range("A2"), true&lt;/P&gt;&lt;P&gt;How can i get rid of this?&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 11:54:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145405#M24129</guid>
      <dc:creator />
      <dc:date>2009-06-03T11:54:51Z</dc:date>
    </item>
    <item>
      <title>how to read a particular cell from an excel sheet using Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145406#M24130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Hi&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I have resolved that issue which i asked u before.now my question is that what if i have mutiple sheet in the excel file&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;For example i have to two sheets name Sales2008 and Sales 2009 in a single Sales Excel Sheet.If i wana select the cell content A2 from Sales 2009 .how can i select ...?because the above script which we have takes by default the first sheet Sales2008 and it will give the cell content A2 of Sales 2008.but i want the cell content A2 of Slaes 2009?how can i?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Regards&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sikandar.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 12:37:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145406#M24130</guid>
      <dc:creator />
      <dc:date>2009-06-03T12:37:30Z</dc:date>
    </item>
    <item>
      <title>how to read a particular cell from an excel sheet using Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145407#M24131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sikandar,&lt;BR /&gt;Sheet is explicitly refered in the macro above:&lt;BR /&gt;&lt;STRONG&gt;Set oFH=oWB.Worksheets.Item(1)&lt;/STRONG&gt;&lt;BR /&gt;If you chose to use load without macro as im my example, it is refered by:&lt;BR /&gt;... &lt;STRONG&gt;table is Sheet1$&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 19:15:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145407#M24131</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-03T19:15:08Z</dc:date>
    </item>
    <item>
      <title>how to read a particular cell from an excel sheet using Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145408#M24132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Thank u soo much.It really worked for me.There is one more thing.&lt;/P&gt;&lt;P&gt;if i wana declare a variable in macros for example i wana declare a value 8000 to a variable name My Budget .how can i achieve this?&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sikandar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2009 11:50:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145408#M24132</guid>
      <dc:creator />
      <dc:date>2009-06-04T11:50:41Z</dc:date>
    </item>
    <item>
      <title>how to read a particular cell from an excel sheet using Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145409#M24133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's a different question, so it would be more useful to open another thread for this. Anyway, if you have a variable MyBudget, and wnat to assign value 8000 in macro, it will be:&lt;BR /&gt;&lt;STRONG&gt;ActiveDocument.Varuables("MyBudget").Setcontent "8000", true&lt;/STRONG&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2009 19:49:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145409#M24133</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-04T19:49:14Z</dc:date>
    </item>
    <item>
      <title>how to read a particular cell from an excel sheet using Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145410#M24134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;load @1 from test.xlsx.. doesn't work &lt;/P&gt;&lt;P&gt;QV says, that @1 field not found&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is the syntax changed for V11?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Bumin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Jun 2012 10:35:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145410#M24134</guid>
      <dc:creator>bumin</dc:creator>
      <dc:date>2012-06-03T10:35:06Z</dc:date>
    </item>
    <item>
      <title>how to read a particular cell from an excel sheet using Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145411#M24135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have got it&lt;/P&gt;&lt;P&gt;in Excel 2010 you have to enter A, B, C instaed of @1, @2, @3&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Jun 2012 11:43:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-read-a-particular-cell-from-an-excel-sheet-using-Qlikview/m-p/145411#M24135</guid>
      <dc:creator>bumin</dc:creator>
      <dc:date>2012-06-03T11:43:39Z</dc:date>
    </item>
  </channel>
</rss>

