<?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: RDL Error in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5154700#M43376</link>
    <description>&lt;P&gt;The problem was the date range ssrs can handle. So any date or days more than 100 years gives an error. The column is a projected date column.&lt;/P&gt;</description>
    <pubDate>Mon, 20 Apr 2026 14:56:34 GMT</pubDate>
    <dc:creator>mjsystemss</dc:creator>
    <dc:date>2026-04-20T14:56:34Z</dc:date>
    <item>
      <title>RDL Error</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5147865#M43288</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have been getting this error on rdl file since today. I have tried to format the date columns&lt;/P&gt;&lt;P&gt;SELECT&lt;BR /&gt;&lt;SPAN class=""&gt;TO_DATE(App_Submitted_DT &lt;/SPAN&gt;&lt;SPAN class=""&gt;DEFAULT&lt;/SPAN&gt; &lt;SPAN class=""&gt;NULL&lt;/SPAN&gt; &lt;SPAN class=""&gt;ON&lt;/SPAN&gt;&lt;SPAN class=""&gt; CONVERSION &lt;/SPAN&gt;&lt;SPAN class=""&gt;ERROR&lt;/SPAN&gt;&lt;SPAN class=""&gt;, &lt;/SPAN&gt;&lt;SPAN class=""&gt;'MM/DD/YYYY'&lt;/SPAN&gt;&lt;SPAN class=""&gt;) &lt;/SPAN&gt;&lt;SPAN class=""&gt;AS&lt;/SPAN&gt;&lt;SPAN class=""&gt; App_Submitted_DT, TO_DATE(Curr_Application_Status_DT &lt;/SPAN&gt;&lt;SPAN class=""&gt;DEFAULT&lt;/SPAN&gt; &lt;SPAN class=""&gt;NULL&lt;/SPAN&gt; &lt;SPAN class=""&gt;ON&lt;/SPAN&gt;&lt;SPAN class=""&gt; CONVERSION &lt;/SPAN&gt;&lt;SPAN class=""&gt;ERROR&lt;/SPAN&gt;&lt;SPAN class=""&gt;, &lt;/SPAN&gt;&lt;SPAN class=""&gt;'MM/DD/YYYY'&lt;/SPAN&gt;&lt;SPAN class=""&gt;) &lt;/SPAN&gt;&lt;SPAN class=""&gt;AS&lt;/SPAN&gt;&lt;SPAN class=""&gt; Curr_Application_Status_DT, &lt;/SPAN&gt;&lt;SPAN class=""&gt;CAST&lt;/SPAN&gt;&lt;SPAN class=""&gt;(Grant_Execution_Date &lt;/SPAN&gt;&lt;SPAN class=""&gt;AS&lt;/SPAN&gt; &lt;SPAN class=""&gt;DATE&lt;/SPAN&gt;&lt;SPAN class=""&gt;) &lt;/SPAN&gt;&lt;SPAN class=""&gt;AS&lt;/SPAN&gt;&lt;SPAN class=""&gt; Grant_Execution_Date &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;FROM&lt;/SPAN&gt;&lt;SPAN class=""&gt; YOUR_TABLE_NAME&lt;/SPAN&gt; yet the problem persists. I need some advise on what to do.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ERROR&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ORA-01841: (full) year must be between -4713 and +9999, and not be 0&lt;BR /&gt;----------------------------&lt;BR /&gt;Cannot read the next data row for the dataset 'EVMS_Detail_Tab'.&lt;BR /&gt;----------------------------&lt;BR /&gt;An error has occurred during report processing.&lt;BR /&gt;----------------------------&lt;BR /&gt;An error occurred during local report processing.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Apr 2026 17:30:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5147865#M43288</guid>
      <dc:creator>mjsystemss</dc:creator>
      <dc:date>2026-04-13T17:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: RDL Error</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5147923#M43290</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;I am not completely certain, but the problem is not mainly related to date formatting. It is caused by invalid date values in Oracle, which the RDL / SSRS report cannot process when reading the dataset.
&lt;DIV&gt;&amp;nbsp;
&lt;DIV&gt;
&lt;DIV&gt;The error:
&lt;BLOCKQUOTE&gt;
&lt;DIV&gt;ORA‑01841: (full) year must be between -4713 and +9999, and not be 0
&lt;DIV&gt;occurs when Oracle tries to convert a value that contains an invalid year, most commonly:
&lt;UL&gt;
&lt;LI&gt;Dates with year 0000&lt;/LI&gt;
&lt;LI&gt;Values such as 00/00/0000 or 01/01/0000&lt;/LI&gt;
&lt;LI&gt;Non-date strings like N/A or other invalid placeholders
&lt;DIV&gt;Oracle does not support year 0, and a single invalid row is enough to cause the entire dataset to fail in SSRS.
&lt;DIV&gt;&amp;nbsp;
&lt;DIV&gt;&lt;!-- ScriptorStartFragment --&gt;TO_DATE(column DEFAULT NULL ON CONVERSION ERROR, 'MM/DD/YYYY')&lt;!-- ScriptorEndFragment --&gt;
&lt;DIV&gt;&amp;nbsp;
&lt;DIV class=""&gt;
&lt;DIV&gt;The most reliable approach is to validate the value before converting it.
&lt;DIV&gt;Example:
&lt;DIV class=""&gt;&amp;nbsp;
&lt;DIV class=""&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;!-- ScriptorStartFragment --&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;CASE&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHEN REGEXP_LIKE(App_Submitted_DT, '^\d{2}/\d{2}/(19|20)\d{2}$')&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; THEN TO_DATE(App_Submitted_DT, 'MM/DD/YYYY')&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ELSE NULL&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;END AS App_Submitted_DT&lt;!-- ScriptorEndFragment --&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;P&gt;Why This Started Recently:&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI class=""&gt;A new record with invalid date data&lt;/LI&gt;
&lt;LI class=""&gt;A change in the source system or ETL process
&lt;DIV class=""&gt;Even one invalid date value can cause the report to fail.
&lt;DIV class=""&gt;&amp;nbsp;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/BLOCKQUOTE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="452690" data-lia-user-login="mjsystemss" class="lia-mention lia-mention-user"&gt;mjsystemss&lt;/a&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Apr 2026 19:18:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5147923#M43290</guid>
      <dc:creator>Zanqueta</dc:creator>
      <dc:date>2026-04-13T19:18:22Z</dc:date>
    </item>
    <item>
      <title>Re: RDL Error</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5148074#M43297</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="452690" data-lia-user-login="mjsystemss" class="lia-mention lia-mention-user"&gt;mjsystemss&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Issue is with the date expression and not with Power BI or RDL&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Error&amp;nbsp;&lt;SPAN&gt;ORA-01841: (full) year must be between -4713 and +9999, and not be 0, is thrown when Your data contains invalid values for year = 0 or a bad input string.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Try this query and validate the data before conversion&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;SELECT&lt;BR /&gt;CASE &lt;BR /&gt;WHEN VALIDATE_CONVERSION(App_Submitted_DT AS DATE, 'MM/DD/YYYY') = 1&lt;BR /&gt;THEN TO_DATE(App_Submitted_DT, 'MM/DD/YYYY')&lt;BR /&gt;ELSE NULL&lt;BR /&gt;END AS App_Submitted_DT&lt;BR /&gt;FROM YOUR_TABLE_NAME;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Alternatively you can also try with Regex&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SELECT&lt;BR /&gt;CASE &lt;BR /&gt;WHEN REGEXP_LIKE(App_Submitted_DT, '^\d{2}/\d{2}/\d{4}$')&lt;BR /&gt;AND SUBSTR(App_Submitted_DT, 7, 4) &amp;lt;&amp;gt; '0000'&lt;BR /&gt;THEN TO_DATE(App_Submitted_DT, 'MM/DD/YYYY')&lt;BR /&gt;ELSE NULL&lt;BR /&gt;END AS App_Submitted_DT,&lt;/P&gt;
&lt;P&gt;CASE &lt;BR /&gt;WHEN REGEXP_LIKE(Curr_Application_Status_DT, '^\d{2}/\d{2}/\d{4}$')&lt;BR /&gt;AND SUBSTR(Curr_Application_Status_DT, 7, 4) &amp;lt;&amp;gt; '0000'&lt;BR /&gt;THEN TO_DATE(Curr_Application_Status_DT, 'MM/DD/YYYY')&lt;BR /&gt;ELSE NULL&lt;BR /&gt;END AS Curr_Application_Status_DT,&lt;/P&gt;
&lt;P&gt;Grant_Execution_Date&lt;/P&gt;
&lt;P&gt;FROM YOUR_TABLE_NAME;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt; I hope this solution helps you unlock your Power BI potential! If you found it helpful, click '&lt;STRONG&gt;Mark as Solution&lt;/STRONG&gt;' to guide others toward the answers they need.&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; Love the effort? Drop the kudos! Your appreciation fuels community spirit and innovation.&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":military_medal:"&gt;🎖&lt;/span&gt; As a proud &lt;STRONG&gt;SuperUser&lt;/STRONG&gt; and &lt;STRONG&gt;Microsoft Partner&lt;/STRONG&gt;, we’re here to empower your data journey and the Power BI Community at large.&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":link:"&gt;🔗&lt;/span&gt; Curious to explore more? [&lt;A href="https://www.grazitti.com/services/data-science/solutions/data-visualization/?utm_source=community&amp;amp;utm_medium=powerbi-community&amp;amp;utm_campaign=Community-Outreach-By-Analytics" target="_self"&gt;Discover here&lt;/A&gt;].&lt;BR /&gt;&lt;STRONG&gt;Let’s keep building smarter solutions together!&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Apr 2026 05:38:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5148074#M43297</guid>
      <dc:creator>grazitti_sapna</dc:creator>
      <dc:date>2026-04-14T05:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: RDL Error</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5148099#M43299</link>
      <description>&lt;P&gt;Replace CAST with TO_DATE on Grant_Execution_Date:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;TO_DATE(
    TO_CHAR( Grant_Execution_Date ),
    'MM/DD/YYYY'
    DEFAULT NULL ON CONVERSION ERROR
) AS Grant_Execution_Date&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 14 Apr 2026 06:31:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5148099#M43299</guid>
      <dc:creator>cengizhanarslan</dc:creator>
      <dc:date>2026-04-14T06:31:42Z</dc:date>
    </item>
    <item>
      <title>Re: RDL Error</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5148325#M43308</link>
      <description>&lt;P&gt;I have tried the suggestions but still get the error&lt;/P&gt;</description>
      <pubDate>Tue, 14 Apr 2026 12:30:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5148325#M43308</guid>
      <dc:creator>mjsystemss</dc:creator>
      <dc:date>2026-04-14T12:30:03Z</dc:date>
    </item>
    <item>
      <title>Re: RDL Error</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5149023#M43319</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you have where I Can share the file with you to&amp;nbsp; have a look that will be fine.&lt;/P&gt;&lt;P&gt;It is an excel file. Column AC- Projected date has a date 10/15/1810 which is wrong. I can share the Case statement for amendment if it is a problem.&lt;BR /&gt;Column AD is a date and Days(numbers). it has a number 22,423.&lt;BR /&gt;Below are the Case Statements&lt;BR /&gt;&lt;STRONG&gt;Column AC- case statement&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;SELECT CASE&lt;BR /&gt;WHEN SOLUTION2_DISBURSED_AMT &amp;gt; 0&lt;BR /&gt;AND SOLUTION2_DISBURSED_AMT &amp;lt; 0.98 * CLOSING_SOLUTION2_AWARD_AMT THEN&lt;BR /&gt;-- Add a cap (e.g., 50 years) so it doesn't crash the report&lt;BR /&gt;GRANT_EXECUTION_DT + NUMTODSINTERVAL(&lt;BR /&gt;LEAST(&lt;BR /&gt;ROUND((DATE '2024-06-14' - GRANT_EXECUTION_DT) /&lt;BR /&gt;(SOLUTION2_DISBURSED_AMT / NULLIF(CLOSING_SOLUTION2_AWARD_AMT, 0)), 0),&lt;BR /&gt;18250 -- Caps the addition at 50 years&lt;BR /&gt;), 'DAY')&lt;BR /&gt;WHEN GRANT_EXECUTION_DT IS NOT NULL AND SOLUTION2_DISBURSED_AMT IS NULL THEN&lt;BR /&gt;GRANT_EXECUTION_DT + 365&lt;BR /&gt;ELSE NULL&lt;BR /&gt;END AS PROJECTED_DATE&lt;/P&gt;&lt;P&gt;from table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;COLUMN AD CASE STATEMENT-- USED FOR DATE OF COMPLETION COUNT_PROJ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SELECT CASE WHEN BUCKET2='IN WORK' AND "Used for Date of Completion Count" IS NOT NULL THEN "Used for Date of Completion Count"&lt;BR /&gt;ELSE NULL END AS "Used for Date of Completion Count_ProJ"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM TABLE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;-----------------------------------------------&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Used for date of completion count is calculated as&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SELECT&lt;BR /&gt;CASE&lt;BR /&gt;WHEN GRANT_EXECUTION_DT IS NOT NULL&lt;BR /&gt;AND SOLUTION2_DISBURSED_AMT IS NOT NULL&lt;BR /&gt;AND SOLUTION2_DISBURSED_AMT &amp;lt; 0.98 * CLOSING_SOLUTION2_AWARD_AMT THEN&lt;BR /&gt;CASE&lt;BR /&gt;WHEN ROUND((DATE '2024-06-14' - GRANT_EXECUTION_DT) /&lt;BR /&gt;(SOLUTION2_DISBURSED_AMT / NULLIF(CLOSING_SOLUTION2_AWARD_AMT, 0))) &amp;lt; 365&lt;BR /&gt;THEN TO_CHAR(GRANT_EXECUTION_DT + 365, 'MM/DD/YYYY')&lt;BR /&gt;-- CAST THE NUMBER TO CHAR TO MATCH THE OTHER BRANCH&lt;BR /&gt;ELSE TO_CHAR(ROUND((DATE '2024-06-14' - GRANT_EXECUTION_DT) /&lt;BR /&gt;(SOLUTION2_DISBURSED_AMT / NULLIF(CLOSING_SOLUTION2_AWARD_AMT, 0))))&lt;BR /&gt;END&lt;BR /&gt;ELSE NULL&lt;BR /&gt;END AS "Used for Date of Completion Count"&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM TABLE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2026 14:37:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5149023#M43319</guid>
      <dc:creator>mjsystemss</dc:creator>
      <dc:date>2026-04-15T14:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: RDL Error</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5150614#M43326</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="452690" data-lia-user-login="mjsystemss" class="lia-mention lia-mention-user"&gt;mjsystemss&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you get a chance to try this solution?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2026 04:12:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5150614#M43326</guid>
      <dc:creator>grazitti_sapna</dc:creator>
      <dc:date>2026-04-16T04:12:30Z</dc:date>
    </item>
    <item>
      <title>Re: RDL Error</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5152361#M43349</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="452690" data-lia-user-login="mjsystemss" class="lia-mention lia-mention-user"&gt;mjsystemss&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;We wanted to follow up to check if you’ve had an opportunity to review the previous responses. If you require further assistance, please don’t hesitate to let us know.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2026 10:51:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5152361#M43349</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2026-04-17T10:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: RDL Error</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5154697#M43375</link>
      <description>&lt;P&gt;This has been resolved. SSRS has date range it can handle. As a column contains date and days. Dates outside 100 years bound will give an error.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2026 14:55:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5154697#M43375</guid>
      <dc:creator>mjsystemss</dc:creator>
      <dc:date>2026-04-20T14:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: RDL Error</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5154700#M43376</link>
      <description>&lt;P&gt;The problem was the date range ssrs can handle. So any date or days more than 100 years gives an error. The column is a projected date column.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2026 14:56:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5154700#M43376</guid>
      <dc:creator>mjsystemss</dc:creator>
      <dc:date>2026-04-20T14:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: RDL Error</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5155301#M43382</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;SECTION class="" dir="auto" data-turn-id="request-69d4d1e2-942c-8322-9be4-e59099866383-5" data-testid="conversation-turn-12" data-scroll-anchor="false" data-turn="assistant"&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;DIV class="" dir="auto" tabindex="0" data-message-author-role="assistant" data-message-id="9928584b-5515-4de5-9669-4b0b9c7e4d5e" data-message-model-slug="gpt-5-3" data-turn-start-message="true"&gt;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;
&lt;P data-start="0" data-end="126"&gt;Glad to hear the issue is resolved! Thanks for sharing the root cause&amp;nbsp; the SSRS date range limitation is a helpful insight.&lt;/P&gt;
&lt;P data-start="128" data-end="269"&gt;If any of the suggested solutions helped, please feel free to acknowledge them&amp;nbsp; it will be beneficial for others facing similar scenarios.&lt;/P&gt;
&lt;P data-start="271" data-end="346" data-is-last-node="" data-is-only-node=""&gt;Appreciate you confirming this, and do reach out if anything else comes up!&lt;/P&gt;
&lt;DIV class=""&gt;&amp;nbsp;
&lt;DIV class=""&gt;
&lt;DIV class=""&gt;&amp;nbsp;
&lt;DIV class="" aria-hidden="true"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/SECTION&gt;</description>
      <pubDate>Tue, 21 Apr 2026 09:46:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/RDL-Error/m-p/5155301#M43382</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2026-04-21T09:46:41Z</dc:date>
    </item>
  </channel>
</rss>

