<?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 Get the SheetID by name in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Get-the-SheetID-by-name/m-p/2550126#M110348</link>
    <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;We want to hyperlink to another sheet. Since SheetIDs change from app instance to instance, I'm looking for a function to retrieve a particular sheet's ID in an expression or during load (and put result in a variable).&lt;/P&gt;&lt;P&gt;The URL to an sheet looks like&lt;/P&gt;&lt;P&gt;&lt;EM&gt;https://&amp;lt;Server name&amp;gt;/sense/app/&amp;lt;App ID&amp;gt;/sheet/&amp;lt;Sheet ID&amp;gt;/state/analysis&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;and using an expression I can resolve most parts dynamically. But not yet the sheet ID being here&amp;nbsp;&lt;EM&gt;YMSKeu&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;='https://' &amp;amp; GetSysAttr('tenantUrlAlias') &amp;amp; '/sense/app/' &amp;amp; DocumentName() &amp;amp; '/sheet/YMSKeu/state/analysis'&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Any idea how to find the right sheet ID e.g. from it's name?&amp;nbsp;&lt;EM&gt;ObjectId()&lt;/EM&gt; or&amp;nbsp;&lt;EM&gt;GetActiveSheetId()&lt;/EM&gt; do not help since I'm looking for another sheet than the function is running in.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanx so much&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 28 May 2026 12:06:42 GMT</pubDate>
    <dc:creator>bean</dc:creator>
    <dc:date>2026-05-28T12:06:42Z</dc:date>
    <item>
      <title>Get the SheetID by name</title>
      <link>https://community.qlik.com/t5/App-Development/Get-the-SheetID-by-name/m-p/2550126#M110348</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;We want to hyperlink to another sheet. Since SheetIDs change from app instance to instance, I'm looking for a function to retrieve a particular sheet's ID in an expression or during load (and put result in a variable).&lt;/P&gt;&lt;P&gt;The URL to an sheet looks like&lt;/P&gt;&lt;P&gt;&lt;EM&gt;https://&amp;lt;Server name&amp;gt;/sense/app/&amp;lt;App ID&amp;gt;/sheet/&amp;lt;Sheet ID&amp;gt;/state/analysis&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;and using an expression I can resolve most parts dynamically. But not yet the sheet ID being here&amp;nbsp;&lt;EM&gt;YMSKeu&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;='https://' &amp;amp; GetSysAttr('tenantUrlAlias') &amp;amp; '/sense/app/' &amp;amp; DocumentName() &amp;amp; '/sheet/YMSKeu/state/analysis'&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Any idea how to find the right sheet ID e.g. from it's name?&amp;nbsp;&lt;EM&gt;ObjectId()&lt;/EM&gt; or&amp;nbsp;&lt;EM&gt;GetActiveSheetId()&lt;/EM&gt; do not help since I'm looking for another sheet than the function is running in.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanx so much&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2026 12:06:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Get-the-SheetID-by-name/m-p/2550126#M110348</guid>
      <dc:creator>bean</dc:creator>
      <dc:date>2026-05-28T12:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: Get the SheetID by name</title>
      <link>https://community.qlik.com/t5/App-Development/Get-the-SheetID-by-name/m-p/2550133#M110349</link>
      <description>&lt;P&gt;You should be able to use the Qlik API to get the list of sheets from the app:&lt;/P&gt;&lt;P&gt;GET https://&amp;lt;YourServer&amp;gt;/qrs/app/object?filter=app.id eq &amp;lt;AppID&amp;gt; and objectType eq 'sheet'&lt;/P&gt;&lt;P&gt;see e.g.&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Integration-Extension-APIs/QlikSense-RestAPI-Get-Sheet-Info-for-App/td-p/1702886" target="_blank"&gt;https://community.qlik.com/t5/Integration-Extension-APIs/QlikSense-RestAPI-Get-Sheet-Info-for-App/td-p/1702886&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DocumentName() will get you the ID of the current app to pass along to the API, though note that using this in script will use the ID of the app where it was last reloaded so it is important that the reload happens on the published app rather than a manual reload in someone's work and then publish.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2026 13:52:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Get-the-SheetID-by-name/m-p/2550133#M110349</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2026-05-28T13:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: Get the SheetID by name</title>
      <link>https://community.qlik.com/t5/App-Development/Get-the-SheetID-by-name/m-p/2550302#M110357</link>
      <description>&lt;P&gt;May be try this&amp;nbsp;&lt;/P&gt;&lt;P&gt;GetActiveSheetId()&lt;/P&gt;&lt;P&gt;ObjectId()&lt;/P&gt;&lt;P&gt;SheetTitle()&lt;/P&gt;</description>
      <pubDate>Sat, 30 May 2026 17:34:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Get-the-SheetID-by-name/m-p/2550302#M110357</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2026-05-30T17:34:15Z</dc:date>
    </item>
  </channel>
</rss>

