<?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>article How-to: Getting started with Microsoft Excel in Qlik Application Automation in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-Getting-started-with-Microsoft-Excel-in-Qlik-Application/ta-p/1838336</link>
    <description>&lt;H3&gt;Authentication and Authorization&lt;/H3&gt;
&lt;P&gt;Authentication and authorization with the Microsoft Excel Connector in Qlik Application Automation works through oAuth2. When a user attempts to connect a Microsoft Excel datasource, the user will be redirected to the Microsoft login page where a user is prompted to give permission for Qlik Application Automation to access their Office 365 tenant.&lt;/P&gt;
&lt;P&gt;The following scopes are being requested by Qlik Application Automation:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Offline_access&lt;/LI&gt;
&lt;LI&gt;User.Read&lt;/LI&gt;
&lt;LI&gt;Files.ReadWrite.All&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3&gt;Working with excel worksheets&lt;/H3&gt;
&lt;P&gt;The Microsoft Excel connector has blocks available to perform actions on worksheets, data inside worksheets and tables inside worksheets. When working with data, we always recommend to work with tables rather than data on the worksheet due to ease of use.&lt;/P&gt;
&lt;H4&gt;Listing rows from Excel File&lt;/H4&gt;
&lt;P&gt;This block obtains values from an excel file worksheet from a specified range. The following input parameters are used:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Drive ID: This is a lookup that will query a user's drive.&lt;/LI&gt;
&lt;LI&gt;&amp;nbsp;Item ID: ID of an item. Using the lookup a user can query a specific folder to search for excel sheets&lt;/LI&gt;
&lt;LI&gt;Worksheet name: Can be selected using lookup or alternatively the worksheet name or ID can be manually provided.&lt;/LI&gt;
&lt;LI&gt;Start Cell: The upper left bound cell of the range to return.&lt;/LI&gt;
&lt;LI&gt;End Cell: The lower right bound cell of the range to return.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;The block returns a double nested array. The first level contains a row, the second level contains the value of a column in that row.&lt;/P&gt;
&lt;P&gt;The same block also exists for working with tables. Here the start cell and end cell are replaced by a Table ID.&lt;/P&gt;
&lt;H4&gt;Create a new worksheet&lt;/H4&gt;
&lt;P&gt;With the block Add Worksheet to Excel File a user can add a new worksheet to an Excel document. It takes the following input parameters:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Item ID: ID of an item. Using the lookup a user can query a specific folder to search for excel sheets&lt;/LI&gt;
&lt;LI&gt;Name: Name for the new worksheet name.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H4&gt;Updating Rows in a Worksheet&lt;/H4&gt;
&lt;P&gt;Using the block Update Rows in Excel Sheet you can specify a range in which you want to overwrite existing data. The following input parameters are required:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Drive ID: This is a lookup that will query a user's drive. A sharepoint drive ID can also be provided.&lt;/LI&gt;
&lt;LI&gt;Item ID: ID of an item. Using the lookup a user can query a specific folder to search for excel sheets&lt;/LI&gt;
&lt;LI&gt;Worksheet name: Can be selected using lookup or alternatively the worksheet name or ID can be manually provided.&lt;/LI&gt;
&lt;LI&gt;Start Cell: The upper left bound cell of the range to return.&lt;/LI&gt;
&lt;LI&gt;End Cell: The lower right bound cell of the range to return.&lt;/LI&gt;
&lt;LI&gt;Values: A double nested array containing data for each cell in the specified range. This has to match the range specified by the Start Cell and End Cell inputs. It is strongly recommended to work with variables and construct a listOfRows variable. This variable should be a list and it should be filled with multiple lists. An example could look like the following:&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MarkGeurtsen_0-1632310780764.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/62569iF8F4749C98CC7BBC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MarkGeurtsen_0-1632310780764.png" alt="MarkGeurtsen_0-1632310780764.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;Create a new table&lt;/H4&gt;
&lt;P&gt;Using the block Create Excel Table With Headers a user can create a table in Excel. Using the block Add Table to Excel File Worksheet a user can also create a table without headers. The following input parameters are being requested:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Drive ID: This is a lookup that will query a user's drive.&amp;nbsp; A sharepoint drive ID can also be provided.&lt;/LI&gt;
&lt;LI&gt;Item ID: ID of an item. Using the lookup a user can query a specific folder to search for excel sheets&lt;/LI&gt;
&lt;LI&gt;Worksheet: When item is selected, a lookup can be used to search for the different sheets in which the table has to be placed. You can also provide the name or ID of the worksheet.&lt;/LI&gt;
&lt;LI&gt;Start Row: The row where the headers will be placed. Indexes in Excel start from 1.&lt;/LI&gt;
&lt;LI&gt;Start Column: Use alphabetic letter.&lt;/LI&gt;
&lt;LI&gt;End column: Use alphabetic letter.&lt;/LI&gt;
&lt;LI&gt;Headers: Array of strings to use as header values. Keep in mind that the number of columns selected using the start column and end column have to match with the headers array. E.g. C-E as column start/end for an array of 3 headers.&lt;/LI&gt;
&lt;LI&gt;Name: Name of the table for easy references.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Aside from creating a table, we can also delete is by the use of the Delete Table from Excel File Worksheet block. This requires an item ID, worksheet and Table ID.&lt;/P&gt;
&lt;H4&gt;Find Row(s) in Excel Worksheet Table&lt;/H4&gt;
&lt;P&gt;Two blocks serve to find a matching row in an Excel Table. These blocks are Find Row in Excel Worksheet Table and Find Rows in Excel Worksheet Table. The first one will only return the first row found, the second one will return all rows found matching these criteria. The following input parameters are required:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Drive ID: This is a lookup that will query a user's drive.&lt;/LI&gt;
&lt;LI&gt;Item ID: ID of an item. Using the lookup a user can query a specific folder to search for excel sheets&lt;/LI&gt;
&lt;LI&gt;Worksheet: When item is selected, a lookup can be used to search for the different sheets in which the table has to be placed. You can also provide the name or ID of the worksheet.&lt;/LI&gt;
&lt;LI&gt;Table ID: Can be obtained using the lookup once all above fields have been filled out.&lt;/LI&gt;
&lt;LI&gt;Column Index For Search: The index of the column that is being searched for a value. The indexes are zero based.&lt;/LI&gt;
&lt;LI&gt;Search Value: The value to search for. Only fully matching values will work.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H4&gt;Sharing workbooks&lt;/H4&gt;
&lt;P&gt;&lt;BR /&gt;Functionality to share workbooks is not included in the Microsoft Excel connector. These actions can be done using the Microsoft Onedrive or Sharepoint connector.&lt;/P&gt;
&lt;H4&gt;Limitations&lt;/H4&gt;
&lt;UL&gt;
&lt;LI&gt;Cannot create a new excel file.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P style="font-style: italic;"&gt;The information in this article is provided as-is and to be used at own discretion. Depending on tool(s) used, customization(s), and/or other factors ongoing support on the solution below may not be provided by Qlik Support.&lt;/P&gt;</description>
    <pubDate>Mon, 13 Mar 2023 08:57:41 GMT</pubDate>
    <dc:creator>MarkGeurtsen</dc:creator>
    <dc:date>2023-03-13T08:57:41Z</dc:date>
    <item>
      <title>How-to: Getting started with Microsoft Excel in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-Getting-started-with-Microsoft-Excel-in-Qlik-Application/ta-p/1838336</link>
      <description>&lt;H3&gt;Authentication and Authorization&lt;/H3&gt;
&lt;P&gt;Authentication and authorization with the Microsoft Excel Connector in Qlik Application Automation works through oAuth2. When a user attempts to connect a Microsoft Excel datasource, the user will be redirected to the Microsoft login page where a user is prompted to give permission for Qlik Application Automation to access their Office 365 tenant.&lt;/P&gt;
&lt;P&gt;The following scopes are being requested by Qlik Application Automation:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Offline_access&lt;/LI&gt;
&lt;LI&gt;User.Read&lt;/LI&gt;
&lt;LI&gt;Files.ReadWrite.All&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3&gt;Working with excel worksheets&lt;/H3&gt;
&lt;P&gt;The Microsoft Excel connector has blocks available to perform actions on worksheets, data inside worksheets and tables inside worksheets. When working with data, we always recommend to work with tables rather than data on the worksheet due to ease of use.&lt;/P&gt;
&lt;H4&gt;Listing rows from Excel File&lt;/H4&gt;
&lt;P&gt;This block obtains values from an excel file worksheet from a specified range. The following input parameters are used:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Drive ID: This is a lookup that will query a user's drive.&lt;/LI&gt;
&lt;LI&gt;&amp;nbsp;Item ID: ID of an item. Using the lookup a user can query a specific folder to search for excel sheets&lt;/LI&gt;
&lt;LI&gt;Worksheet name: Can be selected using lookup or alternatively the worksheet name or ID can be manually provided.&lt;/LI&gt;
&lt;LI&gt;Start Cell: The upper left bound cell of the range to return.&lt;/LI&gt;
&lt;LI&gt;End Cell: The lower right bound cell of the range to return.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;The block returns a double nested array. The first level contains a row, the second level contains the value of a column in that row.&lt;/P&gt;
&lt;P&gt;The same block also exists for working with tables. Here the start cell and end cell are replaced by a Table ID.&lt;/P&gt;
&lt;H4&gt;Create a new worksheet&lt;/H4&gt;
&lt;P&gt;With the block Add Worksheet to Excel File a user can add a new worksheet to an Excel document. It takes the following input parameters:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Item ID: ID of an item. Using the lookup a user can query a specific folder to search for excel sheets&lt;/LI&gt;
&lt;LI&gt;Name: Name for the new worksheet name.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H4&gt;Updating Rows in a Worksheet&lt;/H4&gt;
&lt;P&gt;Using the block Update Rows in Excel Sheet you can specify a range in which you want to overwrite existing data. The following input parameters are required:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Drive ID: This is a lookup that will query a user's drive. A sharepoint drive ID can also be provided.&lt;/LI&gt;
&lt;LI&gt;Item ID: ID of an item. Using the lookup a user can query a specific folder to search for excel sheets&lt;/LI&gt;
&lt;LI&gt;Worksheet name: Can be selected using lookup or alternatively the worksheet name or ID can be manually provided.&lt;/LI&gt;
&lt;LI&gt;Start Cell: The upper left bound cell of the range to return.&lt;/LI&gt;
&lt;LI&gt;End Cell: The lower right bound cell of the range to return.&lt;/LI&gt;
&lt;LI&gt;Values: A double nested array containing data for each cell in the specified range. This has to match the range specified by the Start Cell and End Cell inputs. It is strongly recommended to work with variables and construct a listOfRows variable. This variable should be a list and it should be filled with multiple lists. An example could look like the following:&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MarkGeurtsen_0-1632310780764.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/62569iF8F4749C98CC7BBC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MarkGeurtsen_0-1632310780764.png" alt="MarkGeurtsen_0-1632310780764.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;Create a new table&lt;/H4&gt;
&lt;P&gt;Using the block Create Excel Table With Headers a user can create a table in Excel. Using the block Add Table to Excel File Worksheet a user can also create a table without headers. The following input parameters are being requested:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Drive ID: This is a lookup that will query a user's drive.&amp;nbsp; A sharepoint drive ID can also be provided.&lt;/LI&gt;
&lt;LI&gt;Item ID: ID of an item. Using the lookup a user can query a specific folder to search for excel sheets&lt;/LI&gt;
&lt;LI&gt;Worksheet: When item is selected, a lookup can be used to search for the different sheets in which the table has to be placed. You can also provide the name or ID of the worksheet.&lt;/LI&gt;
&lt;LI&gt;Start Row: The row where the headers will be placed. Indexes in Excel start from 1.&lt;/LI&gt;
&lt;LI&gt;Start Column: Use alphabetic letter.&lt;/LI&gt;
&lt;LI&gt;End column: Use alphabetic letter.&lt;/LI&gt;
&lt;LI&gt;Headers: Array of strings to use as header values. Keep in mind that the number of columns selected using the start column and end column have to match with the headers array. E.g. C-E as column start/end for an array of 3 headers.&lt;/LI&gt;
&lt;LI&gt;Name: Name of the table for easy references.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Aside from creating a table, we can also delete is by the use of the Delete Table from Excel File Worksheet block. This requires an item ID, worksheet and Table ID.&lt;/P&gt;
&lt;H4&gt;Find Row(s) in Excel Worksheet Table&lt;/H4&gt;
&lt;P&gt;Two blocks serve to find a matching row in an Excel Table. These blocks are Find Row in Excel Worksheet Table and Find Rows in Excel Worksheet Table. The first one will only return the first row found, the second one will return all rows found matching these criteria. The following input parameters are required:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Drive ID: This is a lookup that will query a user's drive.&lt;/LI&gt;
&lt;LI&gt;Item ID: ID of an item. Using the lookup a user can query a specific folder to search for excel sheets&lt;/LI&gt;
&lt;LI&gt;Worksheet: When item is selected, a lookup can be used to search for the different sheets in which the table has to be placed. You can also provide the name or ID of the worksheet.&lt;/LI&gt;
&lt;LI&gt;Table ID: Can be obtained using the lookup once all above fields have been filled out.&lt;/LI&gt;
&lt;LI&gt;Column Index For Search: The index of the column that is being searched for a value. The indexes are zero based.&lt;/LI&gt;
&lt;LI&gt;Search Value: The value to search for. Only fully matching values will work.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H4&gt;Sharing workbooks&lt;/H4&gt;
&lt;P&gt;&lt;BR /&gt;Functionality to share workbooks is not included in the Microsoft Excel connector. These actions can be done using the Microsoft Onedrive or Sharepoint connector.&lt;/P&gt;
&lt;H4&gt;Limitations&lt;/H4&gt;
&lt;UL&gt;
&lt;LI&gt;Cannot create a new excel file.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P style="font-style: italic;"&gt;The information in this article is provided as-is and to be used at own discretion. Depending on tool(s) used, customization(s), and/or other factors ongoing support on the solution below may not be provided by Qlik Support.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2023 08:57:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-Getting-started-with-Microsoft-Excel-in-Qlik-Application/ta-p/1838336</guid>
      <dc:creator>MarkGeurtsen</dc:creator>
      <dc:date>2023-03-13T08:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: How-to: Getting started with Microsoft Excel in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-Getting-started-with-Microsoft-Excel-in-Qlik-Application/tac-p/1876224#M5191</link>
      <description>&lt;P&gt;Can you help with "Add Row to Table" block of the Excel connector - I cannot get QAA to write a row to an existing table from a "Get Straight Table Data" block? The documentation is lacking in this area.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Dec 2021 17:42:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-Getting-started-with-Microsoft-Excel-in-Qlik-Application/tac-p/1876224#M5191</guid>
      <dc:creator>Carl_Hunter</dc:creator>
      <dc:date>2021-12-30T17:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: How-to: Getting started with Microsoft Excel in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-Getting-started-with-Microsoft-Excel-in-Qlik-Application/tac-p/1880073#M5255</link>
      <description>&lt;P&gt;The issue with writing data from the "Get Straight Table Data" block with "Add Row to Table" block is that the first block returns a list of Json objects where each object contains the header names as keys and the matching value for that row. The excel block expects a list of just values. You would have to convert the JSON objects to a list element containing only values.&lt;/P&gt;
&lt;P&gt;Also answered in:&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Qlik-Application-Automation/QAA-Update-Excel-rows-from-Table-Data/td-p/1877177" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Application-Automation/QAA-Update-Excel-rows-from-Table-Data/td-p/1877177&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jan 2022 13:11:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-Getting-started-with-Microsoft-Excel-in-Qlik-Application/tac-p/1880073#M5255</guid>
      <dc:creator>MarkGeurtsen</dc:creator>
      <dc:date>2022-01-12T13:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: How-to: Getting started with Microsoft Excel in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-Getting-started-with-Microsoft-Excel-in-Qlik-Application/tac-p/1991723#M7509</link>
      <description>&lt;P&gt;Is there a way to query for the column headers of a table in Excel?&lt;/P&gt;
&lt;P&gt;I want to check the headers I have to ensure I'm matching them with the payload I want to insert/update.&lt;/P&gt;
&lt;P&gt;I think I'm looking for something like this endpoint&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/graph/api/table-list-columns?view=graph-rest-1.0&amp;amp;tabs=http" target="_blank"&gt;https://learn.microsoft.com/en-us/graph/api/table-list-columns?view=graph-rest-1.0&amp;amp;tabs=http&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2022 10:28:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-Getting-started-with-Microsoft-Excel-in-Qlik-Application/tac-p/1991723#M7509</guid>
      <dc:creator>crossroadsit</dc:creator>
      <dc:date>2022-10-12T10:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: How-to: Getting started with Microsoft Excel in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-Getting-started-with-Microsoft-Excel-in-Qlik-Application/tac-p/1993892#M7558</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/45008"&gt;@crossroadsit&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;We do not yet have a block available for this.&lt;BR /&gt;This should be rather simple to implement, so I will add this as an enhancement to the connector and will update this message when that reaches live environments.&lt;/P&gt;
&lt;P&gt;Thanks for your suggestion!&lt;/P&gt;</description>
      <pubDate>Tue, 18 Oct 2022 11:53:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-Getting-started-with-Microsoft-Excel-in-Qlik-Application/tac-p/1993892#M7558</guid>
      <dc:creator>MarkGeurtsen</dc:creator>
      <dc:date>2022-10-18T11:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: How-to: Getting started with Microsoft Excel in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-Getting-started-with-Microsoft-Excel-in-Qlik-Application/tac-p/2045046#M8580</link>
      <description>&lt;P&gt;Is this still limited to personal OneDrive areas? Or can it be used with any Sharepoint folder?&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2023 14:08:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-Getting-started-with-Microsoft-Excel-in-Qlik-Application/tac-p/2045046#M8580</guid>
      <dc:creator>Liam_Grant</dc:creator>
      <dc:date>2023-03-03T14:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: How-to: Getting started with Microsoft Excel in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-Getting-started-with-Microsoft-Excel-in-Qlik-Application/tac-p/2048342#M8668</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/189826"&gt;@Liam_Grant&lt;/a&gt;&amp;nbsp;Is this what you are a looking for?&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Official-Support-Articles/How-to-Work-with-Excel-files-stored-on-Sharepoint-using-Qlik/ta-p/1871558" target="_blank" rel="noopener"&gt;How to: Work with Excel files stored on Sharepoint using Qlik Application Automation&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If not, I recommend posting your requirements in the &lt;A href="https://community.qlik.com/t5/qlik-application-automation/bd-p/qlik-application-automation-discussions" target="_blank" rel="noopener"&gt;Qlik Application Automation forum&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We'll also review the article itself though, so I appreciate your comment!&lt;/P&gt;
&lt;P&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2023 08:49:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-Getting-started-with-Microsoft-Excel-in-Qlik-Application/tac-p/2048342#M8668</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2023-03-13T08:49:58Z</dc:date>
    </item>
    <item>
      <title>Re: How-to: Getting started with Microsoft Excel in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-Getting-started-with-Microsoft-Excel-in-Qlik-Application/tac-p/2051985#M8727</link>
      <description>&lt;P&gt;I have an Excel file in Azure Blob Storage. When trying to read the contents of the excel file, obviously Drive ID isn't possible because the file is not saved locally.&lt;/P&gt;
&lt;P&gt;Is there a workaround where I can enter e.g. the tenent ID for my Azure subscription where the drive ID is and Qlik Sense will be able to adjust?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I feel like only having the option to read from an excel file that is available locally would be quite limiting and not being proactive with current trends.&lt;/P&gt;
&lt;P&gt;Thanks for your help.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2023 11:23:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-Getting-started-with-Microsoft-Excel-in-Qlik-Application/tac-p/2051985#M8727</guid>
      <dc:creator>luke_brady</dc:creator>
      <dc:date>2023-03-22T11:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: How-to: Getting started with Microsoft Excel in Qlik Application Automation</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-Getting-started-with-Microsoft-Excel-in-Qlik-Application/tac-p/2145957#M10861</link>
      <description>&lt;P&gt;how can I know my Item ID?&lt;/P&gt;</description>
      <pubDate>Sun, 10 Dec 2023 08:16:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-Getting-started-with-Microsoft-Excel-in-Qlik-Application/tac-p/2145957#M10861</guid>
      <dc:creator>moshea</dc:creator>
      <dc:date>2023-12-10T08:16:31Z</dc:date>
    </item>
  </channel>
</rss>

