<?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: “Query has exceeded the available resources” in Power BI in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Query-has-exceeded-the-available-resources-in-Power-BI/m-p/5058147#M64563</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/438391"&gt;@Raja10ram&lt;/a&gt;,&lt;/P&gt;
&lt;P data-start="16" data-end="853" data-is-last-node="" data-is-only-node=""&gt;Thanks for the update.&lt;BR /&gt;Since the same error is still coming even after using the PostingIndex logic, this looks like a data volume and visual-level issue rather than a DAX syntax problem. The opening balance is getting calculated for every row shown in the visual, and when the ledger table is large or when the visual contains columns like date, voucher number, and narration together, Power BI has to scan too many rows and it runs out of resources. This usually happens in Pro or shared capacity also. For large ledger data, calculating opening or running balance using DAX at transaction level is not recommended. The better and stable approach is to calculate the running opening balance in Power Query or at the source after sorting by date and voucher, and then use it directly in the report. This should avoid the resource error.&lt;BR /&gt;&lt;BR /&gt;Hope the above provided information help you resolve the issue, if you have any further concerns or queries, please feel free to reach out to us.&lt;BR /&gt;Regards,&lt;BR /&gt;Community Support Team.&lt;/P&gt;</description>
    <pubDate>Thu, 19 Feb 2026 08:04:40 GMT</pubDate>
    <dc:creator>v-hjannapu</dc:creator>
    <dc:date>2026-02-19T08:04:40Z</dc:date>
    <item>
      <title>“Query has exceeded the available resources” in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Query-has-exceeded-the-available-resources-in-Power-BI/m-p/4998037#M64454</link>
      <description>&lt;P&gt;Hi everyone,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I’m facing a performance issue in Power BI where the report throws the error &lt;STRONG&gt;“Query has exceeded the available resources”&lt;/STRONG&gt; while loading visuals. we are using this DAX Calculation.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Opening Balance =&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt; (&lt;SPAN&gt;SUM&lt;/SPAN&gt; ( 'Ledger'[DBAMOUNT] ) - &lt;SPAN&gt;SUM&lt;/SPAN&gt; ( 'Ledger'[CRAMOUNT] ),&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;SPAN&gt;WINDOW&lt;/SPAN&gt; (&lt;SPAN&gt;1&lt;/SPAN&gt;,&lt;SPAN&gt;ABS&lt;/SPAN&gt;,-&lt;SPAN&gt;1&lt;/SPAN&gt;,&lt;SPAN&gt;REL&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;SPAN&gt;ALL&lt;/SPAN&gt; ('Ledger'[date],'Ledger'[narriation],'Ledger'[voucher no]),&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;SPAN&gt;ORDERBY&lt;/SPAN&gt; ('Ledger'[date],&lt;SPAN&gt;1&lt;/SPAN&gt;,'Ledger'[voucher no], &lt;SPAN&gt;1&lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; )&lt;/P&gt;&lt;P&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Raja10ram_0-1770301250123.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1324822i8A2F97DA81C227EE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Raja10ram_0-1770301250123.png" alt="Raja10ram_0-1770301250123.png" /&gt;&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Feb 2026 14:23:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Query-has-exceeded-the-available-resources-in-Power-BI/m-p/4998037#M64454</guid>
      <dc:creator>Raja10ram</dc:creator>
      <dc:date>2026-02-05T14:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: “Query has exceeded the available resources” in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Query-has-exceeded-the-available-resources-in-Power-BI/m-p/4998050#M64456</link>
      <description>&lt;P&gt;Create a numeric PostingIndex in Power Query / source (date + voucher sequence), then:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Opening Balance =
VAR CurIdx = MAX ( 'Ledger'[PostingIndex] )
RETURN
CALCULATE (
    SUM ( 'Ledger'[DBAMOUNT] ) - SUM ( 'Ledger'[CRAMOUNT] ),
    FILTER ( ALL ( 'Ledger'[PostingIndex] ), 'Ledger'[PostingIndex] &amp;lt; CurIdx )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 05 Feb 2026 14:33:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Query-has-exceeded-the-available-resources-in-Power-BI/m-p/4998050#M64456</guid>
      <dc:creator>cengizhanarslan</dc:creator>
      <dc:date>2026-02-05T14:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: “Query has exceeded the available resources” in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Query-has-exceeded-the-available-resources-in-Power-BI/m-p/5000774#M64470</link>
      <description>&lt;P&gt;Still we getting the same issue while we are using the above logic.&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1292787"&gt;@cengizhanarslan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Raja10ram_0-1770610271367.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1325294i8916C0527AC59C74/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Raja10ram_0-1770610271367.png" alt="Raja10ram_0-1770610271367.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Feb 2026 04:34:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Query-has-exceeded-the-available-resources-in-Power-BI/m-p/5000774#M64470</guid>
      <dc:creator>Raja10ram</dc:creator>
      <dc:date>2026-02-09T04:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: “Query has exceeded the available resources” in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Query-has-exceeded-the-available-resources-in-Power-BI/m-p/5000778#M64471</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/438391"&gt;@Raja10ram&lt;/a&gt;,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: SegoeUI; font-size: 11.25pt;"&gt;&lt;SPAN&gt;I would also take a moment to thank&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1292787"&gt;@cengizhanarslan&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;, for actively participating in the community forum and for the solutions you’ve been sharing in the community forum. Your contributions make a real difference.&lt;BR /&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: SegoeUI; font-size: 11.25pt; color: black;"&gt;&lt;SPAN&gt;I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Community Support Team.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Feb 2026 04:35:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Query-has-exceeded-the-available-resources-in-Power-BI/m-p/5000778#M64471</guid>
      <dc:creator>v-hjannapu</dc:creator>
      <dc:date>2026-02-09T04:35:47Z</dc:date>
    </item>
    <item>
      <title>Re: “Query has exceeded the available resources” in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Query-has-exceeded-the-available-resources-in-Power-BI/m-p/5006400#M64502</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/438391"&gt;@Raja10ram&lt;/a&gt;,&lt;BR /&gt;I hope the above details help you fix the issue. If you still have any questions or need more help, feel free to reach out. We are always here to support you.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Community Support Team.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Feb 2026 04:25:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Query-has-exceeded-the-available-resources-in-Power-BI/m-p/5006400#M64502</guid>
      <dc:creator>v-hjannapu</dc:creator>
      <dc:date>2026-02-12T04:25:16Z</dc:date>
    </item>
    <item>
      <title>Re: “Query has exceeded the available resources” in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Query-has-exceeded-the-available-resources-in-Power-BI/m-p/5058147#M64563</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/438391"&gt;@Raja10ram&lt;/a&gt;,&lt;/P&gt;
&lt;P data-start="16" data-end="853" data-is-last-node="" data-is-only-node=""&gt;Thanks for the update.&lt;BR /&gt;Since the same error is still coming even after using the PostingIndex logic, this looks like a data volume and visual-level issue rather than a DAX syntax problem. The opening balance is getting calculated for every row shown in the visual, and when the ledger table is large or when the visual contains columns like date, voucher number, and narration together, Power BI has to scan too many rows and it runs out of resources. This usually happens in Pro or shared capacity also. For large ledger data, calculating opening or running balance using DAX at transaction level is not recommended. The better and stable approach is to calculate the running opening balance in Power Query or at the source after sorting by date and voucher, and then use it directly in the report. This should avoid the resource error.&lt;BR /&gt;&lt;BR /&gt;Hope the above provided information help you resolve the issue, if you have any further concerns or queries, please feel free to reach out to us.&lt;BR /&gt;Regards,&lt;BR /&gt;Community Support Team.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Feb 2026 08:04:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Query-has-exceeded-the-available-resources-in-Power-BI/m-p/5058147#M64563</guid>
      <dc:creator>v-hjannapu</dc:creator>
      <dc:date>2026-02-19T08:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: “Query has exceeded the available resources” in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Query-has-exceeded-the-available-resources-in-Power-BI/m-p/5133916#M64708</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/438391"&gt;@Raja10ram&lt;/a&gt;,&lt;BR /&gt;I hope the information shared above helps resolve your issue. If you still need any assistance or have more questions, please feel free to contact us. We are here to help.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Community Support Team.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2026 04:05:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Query-has-exceeded-the-available-resources-in-Power-BI/m-p/5133916#M64708</guid>
      <dc:creator>v-hjannapu</dc:creator>
      <dc:date>2026-03-17T04:05:37Z</dc:date>
    </item>
  </channel>
</rss>

