<?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: Week Number Not Returning Week 1 In New Year in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4888511#M186117</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1441306" data-lia-user-login="L1102" class="lia-mention lia-mention-user"&gt;L1102&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The issue lies in this part of the formula:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;!-- ScriptorStartFragment --&gt;CalendarWeekNum + (52 - WeekNumber) + 1&lt;!-- ScriptorEndFragment --&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1 + (52 - 52) + 1 = 1 + 0 + 1 = 2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This means the first week of the new fiscal year is incorrectly returned as &lt;STRONG&gt;Week 2&lt;/STRONG&gt; instead of &lt;STRONG&gt;Week 1&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me show another possible approach:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;FiscalWeek =
VAR CurrentDate = 'Sobeys Promo Calendar'[Promo Week Start Date].[Date]
VAR YearStartDate = DATE('Sobeys Promo Calendar'[Year], 5, 1)
VAR CalendarWeekNum = WEEKNUM(CurrentDate, 14)
VAR WeekNumber = WEEKNUM(YearStartDate, 14)
RETURN
MOD(CalendarWeekNum - WeekNumber + 52, 52) + 1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this response was helpful in any way, I’d gladly accept a &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;much like the joy of seeing a DAX measure work first time without needing another FILTER.&lt;/P&gt;&lt;P&gt;Please mark it as the correct solution. It helps other community members find their way faster (and saves them from another endless loop &lt;span class="lia-unicode-emoji" title=":cyclone:"&gt;🌀&lt;/span&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 28 Nov 2025 15:32:28 GMT</pubDate>
    <dc:creator>Zanqueta</dc:creator>
    <dc:date>2025-11-28T15:32:28Z</dc:date>
    <item>
      <title>Week Number Not Returning Week 1 In New Year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4888498#M186115</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm new to Dax (2-3 months in), and hoping someone can help identify where I'm off in my Dax formula. I'm trying to return my week numbers off a custome fiscal calendar where the start date is on a Thursday. I have the code below which starts off perfectly with the oldest year, but when it transitions to the new year it starts at week 2. I'm not sure how to fix this.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Nov 2025 15:06:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4888498#M186115</guid>
      <dc:creator>L1102</dc:creator>
      <dc:date>2025-11-28T15:06:32Z</dc:date>
    </item>
    <item>
      <title>Re: Week Number Not Returning Week 1 In New Year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4888500#M186116</link>
      <description>&lt;P&gt;Hii&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1441306" data-lia-user-login="L1102" class="lia-mention lia-mention-user"&gt;L1102&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your week is starting at Week 2 because WEEKNUM(...,14) follows ISO week rules, where Week 1 is defined by the first Thursday of the calendar year. Since your fiscal year also begins on a Thursday, the last days of the old year and the first days of the new year fall into the same ISO week, so Power BI doesn’t reset to Week 1. You need to calculate the week based on your fiscal start date, not ISO rules&amp;nbsp; e.g., 1 + INT(([Date] – FiscalStartDate) / 7)&amp;nbsp; to force Week 1 to restart correctly each year.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Week Fiscal =
VAR StartOfYear = DATE([Year], 5, 1)      
RETURN
1 + INT( ( [Date] - StartOfYear ) / 7 )
&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 28 Nov 2025 15:16:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4888500#M186116</guid>
      <dc:creator>rohit1991</dc:creator>
      <dc:date>2025-11-28T15:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: Week Number Not Returning Week 1 In New Year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4888511#M186117</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1441306" data-lia-user-login="L1102" class="lia-mention lia-mention-user"&gt;L1102&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The issue lies in this part of the formula:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;!-- ScriptorStartFragment --&gt;CalendarWeekNum + (52 - WeekNumber) + 1&lt;!-- ScriptorEndFragment --&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1 + (52 - 52) + 1 = 1 + 0 + 1 = 2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This means the first week of the new fiscal year is incorrectly returned as &lt;STRONG&gt;Week 2&lt;/STRONG&gt; instead of &lt;STRONG&gt;Week 1&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me show another possible approach:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;FiscalWeek =
VAR CurrentDate = 'Sobeys Promo Calendar'[Promo Week Start Date].[Date]
VAR YearStartDate = DATE('Sobeys Promo Calendar'[Year], 5, 1)
VAR CalendarWeekNum = WEEKNUM(CurrentDate, 14)
VAR WeekNumber = WEEKNUM(YearStartDate, 14)
RETURN
MOD(CalendarWeekNum - WeekNumber + 52, 52) + 1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this response was helpful in any way, I’d gladly accept a &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;much like the joy of seeing a DAX measure work first time without needing another FILTER.&lt;/P&gt;&lt;P&gt;Please mark it as the correct solution. It helps other community members find their way faster (and saves them from another endless loop &lt;span class="lia-unicode-emoji" title=":cyclone:"&gt;🌀&lt;/span&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Nov 2025 15:32:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4888511#M186117</guid>
      <dc:creator>Zanqueta</dc:creator>
      <dc:date>2025-11-28T15:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: Week Number Not Returning Week 1 In New Year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4888545#M186123</link>
      <description>&lt;P&gt;Thanks so much&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="861055" data-lia-user-login="Zanqueta" class="lia-mention lia-mention-user"&gt;Zanqueta&lt;/a&gt;, but unfortunetly this solution didn't seem to work.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Nov 2025 16:24:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4888545#M186123</guid>
      <dc:creator>L1102</dc:creator>
      <dc:date>2025-11-28T16:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: Week Number Not Returning Week 1 In New Year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4888550#M186124</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="824538" data-lia-user-login="rohit1991" class="lia-mention lia-mention-user"&gt;rohit1991&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This didn't seem to work, not sure if i entered the correct [date] my start date is subtracting from.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Nov 2025 16:33:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4888550#M186124</guid>
      <dc:creator>L1102</dc:creator>
      <dc:date>2025-11-28T16:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: Week Number Not Returning Week 1 In New Year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4889179#M186147</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1441306" data-lia-user-login="L1102" class="lia-mention lia-mention-user"&gt;L1102&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://d13ot9o61jdzpp.cloudfront.net/files/pbiforum/Laura_Marcucci.pbix" target="_self"&gt;Download example PBIX file with the data/code below&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Given that your data has a date column and the fiscal year for that date, you can get the fiscal week with this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="php"&gt;Fiscal Week = INT(([Date] - DATE([Year],5,1))/7) + 1&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your fiscal year starts on 1 May then Apr 30 2025 is actually the start of Week 53.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are 365 days in a year (366 in a leap year) so 365 / 7 is 52.14.&amp;nbsp; There are always 52 weeks plus another day, or two days in leap years.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you really want to cap the week number to 52 then you can use this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="php"&gt;Fiscal Week = 

VAR _weeknum = INT(([Date] - DATE([Year],5,1))/7) + 1

RETURN

IF(_weeknum &amp;gt; 52, 52, _weeknum)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Phil&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Dec 2025 02:06:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4889179#M186147</guid>
      <dc:creator>PhilipTreacy</dc:creator>
      <dc:date>2025-12-01T02:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: Week Number Not Returning Week 1 In New Year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4889183#M186148</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1441306" data-lia-user-login="L1102" class="lia-mention lia-mention-user"&gt;L1102&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I hope you are doing well and Welcome to &lt;STRONG&gt;&lt;FONT color="#FF6600"&gt;Mi&lt;/FONT&gt;&lt;FONT color="#99CC00"&gt;cr&lt;/FONT&gt;&lt;FONT color="#33CCCC"&gt;o&lt;/FONT&gt;&lt;FONT color="#FFCC00"&gt;soft&lt;/FONT&gt; &lt;FONT color="#99CC00"&gt;Fabric&lt;/FONT&gt; &lt;FONT color="#00FF00"&gt;Community &lt;/FONT&gt;&lt;/STRONG&gt;☺️&lt;span class="lia-unicode-emoji" title=":red_heart:"&gt;❤️&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So Looking at your issue i noticed the issue&amp;nbsp;is likely with how your &lt;STRONG&gt;DAX formula&lt;/STRONG&gt; handles the transition between &lt;STRONG&gt;fiscal years&lt;/STRONG&gt; when your &lt;STRONG&gt;fiscal week starts&lt;/STRONG&gt; on a &lt;STRONG&gt;Thursday...&lt;/STRONG&gt;So her is a couple of Approaches:&lt;/P&gt;&lt;P&gt;&lt;FONT face="comic sans ms,sans-serif" size="4" color="#FFCC00"&gt;&lt;STRONG&gt;First Approach&lt;/STRONG&gt;&lt;/FONT&gt;:&amp;nbsp;Using &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;WEEKNUM&lt;/STRONG&gt; &lt;/FONT&gt;with&lt;FONT color="#99CC00"&gt; &lt;STRONG&gt;Custom Start Day&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Fiscal Week = 
VAR CurrentDate = [Your Date Column]
VAR YearStart = DATE(YEAR(CurrentDate), 1, 1)
VAR ThursdayOffset = MOD(5 - WEEKDAY(YearStart, 2) + 7, 7)  // 5 represents Thursday in ISO (1=Mon, 7=Sun)
VAR FirstThursday = YearStart + ThursdayOffset
RETURN
IF(
    CurrentDate &amp;gt;= FirstThursday,
    WEEKNUM(CurrentDate, 2) - WEEKNUM(FirstThursday, 2) + 1,
    // Handle dates before first Thursday (belong to previous fiscal year)
    52 - WEEKNUM(FirstThursday, 2) + WEEKNUM(CurrentDate, 2) + 1
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="comic sans ms,sans-serif" size="4" color="#99CC00"&gt;&lt;STRONG&gt;Second Approach&lt;/STRONG&gt;&lt;/FONT&gt;:&amp;nbsp;&lt;STRONG&gt;More Robust &lt;FONT color="#FF0000"&gt;Fiscal Week&lt;/FONT&gt; Calculation&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Fiscal Week = 
VAR CurrentDate = [Your Date Column]
VAR CurrentYear = YEAR(CurrentDate)
VAR Jan1 = DATE(CurrentYear, 1, 1)
VAR DayOfWeek = WEEKDAY(Jan1, 2)  // Monday = 1, Sunday = 7

// Find first Thursday of the year
VAR FirstThursday = 
    SWITCH(
        TRUE(),
        DayOfWeek = 1, Jan1 + 3,  // Monday -&amp;gt; Thursday is +3
        DayOfWeek = 2, Jan1 + 2,   // Tuesday -&amp;gt; Thursday is +2
        DayOfWeek = 3, Jan1 + 1,   // Wednesday -&amp;gt; Thursday is +1
        DayOfWeek = 4, Jan1,       // Thursday
        DayOfWeek = 5, Jan1 + 6,   // Friday -&amp;gt; Next Thursday is +6
        DayOfWeek = 6, Jan1 + 5,   // Saturday -&amp;gt; Next Thursday is +5
        DayOfWeek = 7, Jan1 + 4    // Sunday -&amp;gt; Next Thursday is +4
    )

RETURN
IF(
    CurrentDate &amp;lt; FirstThursday,
    // This date belongs to previous fiscal year's last weeks
    WEEKNUM(CurrentDate, 2) + (52 - WEEKNUM(FirstThursday - 1, 2)),
    // Normal case: calculate weeks from first Thursday
    WEEKNUM(CurrentDate, 2) - WEEKNUM(FirstThursday, 2) + 1
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="comic sans ms,sans-serif" size="4" color="#FF9900"&gt;&lt;STRONG&gt;Bonus Approach&lt;/STRONG&gt;&lt;/FONT&gt;:&amp;nbsp;Using &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Date Difference&lt;/STRONG&gt; &lt;/FONT&gt;(&lt;STRONG&gt;I Recommend it&lt;/STRONG&gt;)&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Fiscal Week = 
VAR CurrentDate = [Your Date Column]
VAR CurrentYear = YEAR(CurrentDate)
VAR Jan1 = DATE(CurrentYear, 1, 1)
VAR DayOfWeekJan1 = WEEKDAY(Jan1, 2)

// Calculate first Thursday
VAR FirstThursday = Jan1 + MOD(11 - DayOfWeekJan1, 7)

// Calculate fiscal year start
VAR FiscalYearStart = 
    IF(
        CurrentDate &amp;lt; FirstThursday,
        DATE(CurrentYear - 1, 1, 1) + MOD(11 - WEEKDAY(DATE(CurrentYear - 1, 1, 1), 2), 7),
        FirstThursday
    )

RETURN
DIVIDE(CurrentDate - FiscalYearStart, 7, 0) + 1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;EM&gt;if this post helps, then I would appreciate a thumbs up&lt;/EM&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;&lt;EM&gt;and&amp;nbsp;&lt;STRONG&gt;mark it as the solution&lt;/STRONG&gt;&amp;nbsp;&lt;/EM&gt;&lt;EM&gt;to help the other members find it more quickly.&lt;/EM&gt;&lt;/SPAN&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;</description>
      <pubDate>Mon, 01 Dec 2025 02:12:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4889183#M186148</guid>
      <dc:creator>Ahmed-Elfeel</dc:creator>
      <dc:date>2025-12-01T02:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: Week Number Not Returning Week 1 In New Year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4889784#M186157</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="264323" data-lia-user-login="PhilipTreacy" class="lia-mention lia-mention-user"&gt;PhilipTreacy&lt;/a&gt;&amp;nbsp; This didn't seem to work for me. For whatever reaseon when I use the INT funstion it gives me a - week number. This may be due to how my date and year is being calculated. My date is a min/max so I can get my calendar to start on the Thursday, and my fiscal year is a EDATE so I can line up the months in the proper year.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Dec 2025 15:45:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4889784#M186157</guid>
      <dc:creator>L1102</dc:creator>
      <dc:date>2025-12-01T15:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: Week Number Not Returning Week 1 In New Year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4889814#M186158</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="838901" data-lia-user-login="Ahmed-Elfeel" class="lia-mention lia-mention-user"&gt;Ahmed-Elfeel&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your help, it's greatly appriciated. I'm starting to think this is all an issue due to the fact that my calendar date is established by a min/max, and my fiscal year is established by an EDATE. I think this is might be what's throwing everything off.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000000"&gt;&lt;FONT color="#FF9900"&gt;First Approach&lt;/FONT&gt;:&lt;/FONT&gt;&lt;/STRONG&gt; Unfortunetly this didn't work, the return that I got was below, and you can see when my fiscal year convert over to 2026 I'm at week 18.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Second Approach:&lt;/STRONG&gt;&lt;/FONT&gt; This gets me real close when I adjust my fiscal calendar to start in May, however something isn't calculating correctly with week 52 of prior year and week 1 of the new year. It doesn'e seem to give me a 7 day count in the week.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;Bonus Approach:&amp;nbsp;&lt;/STRONG&gt;&lt;FONT color="#000000"&gt;This one also get's me close when I adjust for a May fical start date, but like approach 2 something is happening with the transition from week 52 to week 1 of the new year.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Dec 2025 16:32:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4889814#M186158</guid>
      <dc:creator>L1102</dc:creator>
      <dc:date>2025-12-01T16:32:30Z</dc:date>
    </item>
    <item>
      <title>Re: Week Number Not Returning Week 1 In New Year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4890031#M186162</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1441306" data-lia-user-login="L1102" class="lia-mention lia-mention-user"&gt;L1102&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://d13ot9o61jdzpp.cloudfront.net/files/pbiforum/L1102.pbix" target="_self"&gt;Download example PBIX file with the code/data shown below&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is pertinent is the first date of the fiscal year which I can see from your calculations is 1 May.&amp;nbsp; It just happens to be a Thursday in 2024.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can see that you are creating &lt;STRONG&gt;Sobeys Promo Calendar&lt;/STRONG&gt; using &lt;STRONG&gt;MIN&lt;/STRONG&gt; and &lt;STRONG&gt;MAX&lt;/STRONG&gt; dates from &lt;STRONG&gt;Time_Table&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Though I am not sure what data is in &lt;STRONG&gt;Time_Table&lt;/STRONG&gt;, so I have created a table called &lt;STRONG&gt;Sobeys Promo Calendar&amp;nbsp;&lt;/STRONG&gt;using some dummy data for &lt;STRONG&gt;Time_Table&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="php"&gt;Sobeys Promo Calendar = CALENDAR(MIN('Time_Table'[Week Start Date]), MAX('Time_Table'[Week End Date]))&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can now create the (Fiscal)&amp;nbsp;&lt;STRONG&gt;Year&lt;/STRONG&gt; column using this&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="php"&gt;Year = IF(MONTH('Sobeys Promo Calendar'[Promo Week Start Date]) &amp;lt; 5, YEAR('Sobeys Promo Calendar'[Promo Week Start Date]) -1 , YEAR('Sobeys Promo Calendar'[Promo Week Start Date]))&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And the &lt;STRONG&gt;Fiscal Week&lt;/STRONG&gt; using this&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="php"&gt;Fiscal Week = INT(('Sobeys Promo Calendar'[Promo Week Start Date] - DATE('Sobeys Promo Calendar'[Year],5,1))/7) + 1&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;NOTE&lt;/STRONG&gt;&amp;nbsp;When creating calculated columns it is perfectly fine to use this syntax (without naming the table explicitly) because the columns being referred to,&amp;nbsp;&lt;STRONG&gt;[Promo Week Start Date]&lt;/STRONG&gt; and&amp;nbsp;&lt;STRONG&gt;[Year]&lt;/STRONG&gt;&amp;nbsp;are in the table where you are creating the column&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Fiscal Week = INT(([Promo Week Start Date] - DATE([Year],5,1))/7) + 1&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Additional Information&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;Just as a bit of hopeful useful info for you, when working with dates it's common practice to use a &lt;STRONG&gt;Date Table&lt;/STRONG&gt;&amp;nbsp;which is used specifically for creating/storing date related information, like fiscal periods, and is used in time intelligence calculations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I see that you are using&amp;nbsp;'Sobeys Promo Calendar'[Promo Week Start Date]&lt;STRONG&gt;.[Date]&lt;/STRONG&gt;&amp;nbsp;and the &lt;STRONG&gt;.[Date]&lt;/STRONG&gt;&amp;nbsp;bit would indicate that you don't have a proper Date Table.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create the Date Table&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="php"&gt;DateTable = CALENDAR(MIN('Time_Table'[Week Start Date]), MAX('Time_Table'[Week End Date]))&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create the fiscal year and week&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Year = IF(MONTH([Date]) &amp;lt; 5, YEAR([Date]) -1 , YEAR([Date]))&lt;/LI-CODE&gt;&lt;LI-CODE lang="php"&gt;Fiscal Week = INT(([Date] - DATE([Year],5,1))/7) + 1&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mark the date table as an actual date table and create a relationship between it and your main table, in this example I've called that main table &lt;STRONG&gt;Promo Calendar&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Promo Calendar&lt;/STRONG&gt; only has a single column of dates&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But because it has a relationship to the &lt;STRONG&gt;Date Table&lt;/STRONG&gt;&amp;nbsp;you can create visuals with the &lt;STRONG&gt;Date&lt;/STRONG&gt; column from &lt;STRONG&gt;Promo Calendar&lt;/STRONG&gt; and the fiscal year and week from the Date Table&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This gives you the same information in the visual as creating the columns.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyway, hope that isn't all information overload.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can read more on Date Tables here&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/guidance/model-date-tables" target="_blank" rel="noopener"&gt;Design guidance for date tables in Power BI Desktop - Power BI | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/" target="_blank" rel="noopener"&gt;Creating a simple date table in DAX - SQLBI&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Phil&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 00:24:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4890031#M186162</guid>
      <dc:creator>PhilipTreacy</dc:creator>
      <dc:date>2025-12-02T00:24:24Z</dc:date>
    </item>
    <item>
      <title>Re: Week Number Not Returning Week 1 In New Year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4890319#M186171</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1441306" data-lia-user-login="L1102" class="lia-mention lia-mention-user"&gt;L1102&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Oh ok let's give it some corrections touch..h&lt;SPAN&gt;ere is the &lt;STRONG&gt;corrected &lt;FONT color="#FF0000"&gt;DAX formula&lt;/FONT&gt;&lt;/STRONG&gt; that should work for your &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;fiscal calendar&lt;/STRONG&gt;&lt;/FONT&gt; (May 1 start, Thursday week start):&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Fiscal Week Corrected = 
VAR CurrentDate = 'Sobeys Promo Calendar'[Promo Week Start Date]
VAR CurrentYear = YEAR(CurrentDate)
VAR May1Current = DATE(CurrentYear, 5, 1)
VAR May1Previous = DATE(CurrentYear - 1, 5, 1)

// Find first Thursday of May for current year
VAR FirstThursdayCurrent = 
    May1Current + 
    SWITCH(
        WEEKDAY(May1Current, 2),
        1, 3,  // Monday -&amp;gt; Thursday is +3 days
        2, 2,  // Tuesday -&amp;gt; Thursday is +2 days
        3, 1,  // Wednesday -&amp;gt; Thursday is +1 day
        4, 0,  // Thursday -&amp;gt; no change
        5, 6,  // Friday -&amp;gt; next Thursday is +6 days
        6, 5,  // Saturday -&amp;gt; next Thursday is +5 days
        7, 4   // Sunday -&amp;gt; next Thursday is +4 days
    )

// Find first Thursday of May for previous year
VAR FirstThursdayPrevious = 
    May1Previous + 
    SWITCH(
        WEEKDAY(May1Previous, 2),
        1, 3,
        2, 2,
        3, 1,
        4, 0,
        5, 6,
        6, 5,
        7, 4
    )

// Determine which fiscal year the date belongs to
VAR FiscalYearStart = 
    IF(
        CurrentDate &amp;gt;= FirstThursdayCurrent,
        FirstThursdayCurrent,
        FirstThursdayPrevious
    )

// Calculate days difference
VAR DaysDiff = CurrentDate - FiscalYearStart

// Calculate week number
VAR WeekNum = INT(DaysDiff / 7) + 1

RETURN
WeekNum&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the above still has &lt;FONT face="comic sans ms,sans-serif" size="4" color="#FF0000"&gt;&lt;STRONG&gt;issues&lt;/STRONG&gt;&lt;/FONT&gt;, try this &lt;STRONG&gt;version&lt;/STRONG&gt; that ensures a full 7 day week calculation:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Fiscal Week Fixed = 
VAR CurrentDate = 'Sobeys Promo Calendar'[Promo Week Start Date]
VAR CurrentYear = YEAR(CurrentDate)

// Create May 1 dates for current and previous years
VAR May1Current = DATE(CurrentYear, 5, 1)
VAR May1Previous = DATE(CurrentYear - 1, 5, 1)

// Function to find first Thursday
VAR GetFirstThursday = 
    VAR BaseDate = May1Current
    VAR DayNum = WEEKDAY(BaseDate, 2)
    VAR DaysToAdd = 
        SWITCH(
            DayNum,
            1, 3,  // Monday -&amp;gt; Thursday
            2, 2,  // Tuesday -&amp;gt; Thursday
            3, 1,  // Wednesday -&amp;gt; Thursday
            4, 0,  // Thursday
            5, 6,  // Friday -&amp;gt; next week
            6, 5,  // Saturday -&amp;gt; next week
            7, 4   // Sunday -&amp;gt; next week
        )
    RETURN BaseDate + DaysToAdd

VAR GetFirstThursdayPrevious = 
    VAR BaseDate = May1Previous
    VAR DayNum = WEEKDAY(BaseDate, 2)
    VAR DaysToAdd = 
        SWITCH(
            DayNum,
            1, 3,
            2, 2,
            3, 1,
            4, 0,
            5, 6,
            6, 5,
            7, 4
        )
    RETURN BaseDate + DaysToAdd

VAR FirstThursdayCurrent = GetFirstThursday
VAR FirstThursdayPrevious = GetFirstThursdayPrevious

// Determine correct fiscal year start
VAR FiscalYearStart = 
    IF(
        CurrentDate &amp;lt; FirstThursdayCurrent,
        FirstThursdayPrevious,
        FirstThursdayCurrent
    )

// Calculate week number ensuring it starts at 1
VAR WeekNumber = 
    DIVIDE(
        CurrentDate - FiscalYearStart,
        7,
        0  // Returns 0 if error
    ) + 1

// Ensure week numbers are positive and within range
RETURN
IF(
    WeekNumber &amp;lt; 1,
    52 + WeekNumber,  // Handle rollover from previous year
    IF(
        WeekNumber &amp;gt; 52,
        WeekNumber - 52,  // Handle overflow
        WeekNumber
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;EM&gt;if this post helps, then I would appreciate a thumbs up&lt;/EM&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;&lt;EM&gt;and&amp;nbsp;&lt;STRONG&gt;mark it as the solution&lt;/STRONG&gt;&amp;nbsp;&lt;/EM&gt;&lt;EM&gt;to help the other members find it more quickly.&lt;/EM&gt;&lt;/SPAN&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;</description>
      <pubDate>Tue, 02 Dec 2025 06:48:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4890319#M186171</guid>
      <dc:creator>Ahmed-Elfeel</dc:creator>
      <dc:date>2025-12-02T06:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: Week Number Not Returning Week 1 In New Year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4890608#M186173</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;To fix it, compute:&lt;/P&gt;&lt;P&gt;The first Thursday of the year&lt;/P&gt;&lt;P&gt;The week number based on that first Thursday&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;FirstFiscalThursday =&lt;BR /&gt;VAR YearStart = DATE( YEAR('Date'[Date]), 1, 1 )&lt;BR /&gt;VAR DayOfWeek = WEEKDAY( YearStart, 2 ) -- Monday = 1 … Sunday = 7&lt;BR /&gt;VAR Offset = MOD( 4 - DayOfWeek, 7 ) -- 4 = Thursday&lt;BR /&gt;RETURN&lt;BR /&gt;YearStart + Offset&lt;/P&gt;&lt;P&gt;FiscalWeek =&lt;BR /&gt;1 +&lt;BR /&gt;QUOTIENT(&lt;BR /&gt;DATEDIFF( [FirstFiscalThursday], 'Date'[Date], DAY ),&lt;BR /&gt;7&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;These are the exact Microsoft Learn documentation pages for the functions used:&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/dax/weekday-function-dax" target="_self"&gt;WEEKDAY function (DAX)&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/dax/datediff-function-dax" target="_self"&gt;DATEDIFF function (DAX)&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/dax/quotient-function-dax" target="_self"&gt;QUOTIENT function (DAX)&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/dax/date-function-dax" target="_self"&gt;DATE function (DAX)&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;A href="https://linktr.ee/RufydaRahma" target="_self"&gt;Rufyda Rahma | MIE&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 11:20:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4890608#M186173</guid>
      <dc:creator>Rufyda</dc:creator>
      <dc:date>2025-12-02T11:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: Week Number Not Returning Week 1 In New Year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4890920#M186196</link>
      <description>&lt;P&gt;First one worked perfectly!!! thank you so much&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="838901" data-lia-user-login="Ahmed-Elfeel" class="lia-mention lia-mention-user"&gt;Ahmed-Elfeel&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 16:17:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Week-Number-Not-Returning-Week-1-In-New-Year/m-p/4890920#M186196</guid>
      <dc:creator>L1102</dc:creator>
      <dc:date>2025-12-02T16:17:03Z</dc:date>
    </item>
  </channel>
</rss>

