<?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: Need help in date table creation in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-in-date-table-creation/m-p/3826742#M149616</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="521880" data-lia-user-login="Navaneetharaju_" class="lia-mention lia-mention-user"&gt;Navaneetharaju_&lt;/a&gt;&amp;nbsp; glad it helped you.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;can you please give Kudos and mark it as solution..&lt;BR /&gt;&lt;BR /&gt;Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!&lt;/P&gt;</description>
    <pubDate>Wed, 10 Apr 2024 10:09:23 GMT</pubDate>
    <dc:creator>johnbasha33</dc:creator>
    <dc:date>2024-04-10T10:09:23Z</dc:date>
    <item>
      <title>Need help in date table creation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-in-date-table-creation/m-p/3809407#M148949</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have creating the date table for my business purpose -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Date table =&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Date =&lt;/SPAN&gt; &lt;SPAN&gt;CALENDAR&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;DATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;2014&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;01&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;01&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;DATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;YEAR&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;TODAY&lt;/SPAN&gt;&lt;SPAN&gt;()),&lt;/SPAN&gt;&lt;SPAN&gt;12&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;31&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;I have created the &lt;STRONG&gt;end date year as a year of today&lt;/STRONG&gt; and 12 the month and 31st day of the month.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;And also,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;i want to find the date column to find the last day of the month,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;In date table we have to create the column that indicate all the last day in my table,&lt;/DIV&gt;&lt;DIV&gt;&lt;BR /&gt;And 1st monday of the every month the same way i want to create the indicator or flag in my date table,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;1st monday of the month indicator,&amp;nbsp;&lt;BR /&gt;2nd monday of the month indicator,&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;3rd monday of the month indicator,&lt;/DIV&gt;&lt;DIV&gt;4th monday of the month indicator&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;5th monday of the month indicator&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;the same way, i have to create a indicators or flag for all 2nd mon, tue, wed, thur, fri, sat, sun till the last mon, last tue, last wed, last thur, last fri, last sat, last sun.&lt;BR /&gt;&lt;BR /&gt;Kindly provide me the calculated column to build this.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 04 Apr 2024 05:56:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-in-date-table-creation/m-p/3809407#M148949</guid>
      <dc:creator>Navaneetharaju_</dc:creator>
      <dc:date>2024-04-04T05:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: Need help in date table creation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-in-date-table-creation/m-p/3809614#M148987</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="521880" data-lia-user-login="Navaneetharaju_" class="lia-mention lia-mention-user"&gt;Navaneetharaju_&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a MQuery I use to create a date table. It shows the last 5 years and next 6 years automatically, you can adapt this for your needs. It also has the last day of the month amongst other columns&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;let
  // configurations start
  Today = Date.From(DateTime.LocalNow()),
  // today's date
  FromYear = Date.Year(DateTime.LocalNow()) -5,
  // set the start year of the date dimension. dates start from 1st of January of this year
  ToYear = Date.Year(DateTime.LocalNow()) +6,
  // set the end year of the date dimension. dates end at 31st of December of this year
  StartofFiscalYear = 7,
  // set the month number that is start of the financial year. example; if fiscal year start is July, value is 7
  firstDayofWeek = Day.Monday,
  // set the week's start day, values: Day.Monday, Day, Sunday....
  // configuration end
  FromDate = #date(FromYear,1,1),
  ToDate = #date(ToYear,12,31),
  Source = List.Dates(
        FromDate,
        Duration.Days(ToDate-FromDate)+1,
        #duration(1,0,0,0)
    ),
  #"Converted to Table" = Table.FromList(Source, Splitter.SplitByNothing(), null, null, ExtraValues.Error),
  #"Renamed Columns" = Table.RenameColumns(#"Converted to Table", {{"Column1", "Date"}}),
  #"Changed Type" = Table.TransformColumnTypes(#"Renamed Columns", {{"Date", type date}}),
  #"Inserted Year" = Table.AddColumn(#"Changed Type", "Year", each Date.Year([Date]), Int64.Type),
  #"Inserted Start of Year" = Table.AddColumn(#"Inserted Year", "Start of Year", each Date.StartOfYear([Date]), type date),
  #"Inserted End of Year" = Table.AddColumn(#"Inserted Start of Year", "End of Year", each Date.EndOfYear([Date]), type date),
  #"Inserted Month" = Table.AddColumn(#"Inserted End of Year", "Month", each Date.Month([Date]), Int64.Type),
  #"Inserted Start of Month" = Table.AddColumn(#"Inserted Month", "Start of Month", each Date.StartOfMonth([Date]), type date),
  #"Inserted End of Month" = Table.AddColumn(#"Inserted Start of Month", "End of Month", each Date.EndOfMonth([Date]), type date),
  #"Inserted Days in Month" = Table.AddColumn(#"Inserted End of Month", "Days in Month", each Date.DaysInMonth([Date]), Int64.Type),
  #"Inserted Day" = Table.AddColumn(#"Inserted Days in Month", "Day", each Date.Day([Date]), Int64.Type),
  #"Inserted Day Name" = Table.AddColumn(#"Inserted Day", "Day Name", each Date.DayOfWeekName([Date]), type text),
  #"Inserted Day of Week" = Table.AddColumn(#"Inserted Day Name", "Day of Week", each Date.DayOfWeek([Date]), Int64.Type),
  #"Inserted Day of Year" = Table.AddColumn(#"Inserted Day of Week", "Day of Year", each Date.DayOfYear([Date]), Int64.Type),
  #"Inserted Month Name" = Table.AddColumn(#"Inserted Day of Year", "Month Name", each Date.MonthName([Date]), type text),
  #"Inserted Quarter" = Table.AddColumn(#"Inserted Month Name", "Quarter", each Date.QuarterOfYear([Date]), Int64.Type),
  #"Inserted Start of Quarter" = Table.AddColumn(#"Inserted Quarter", "Start of Quarter", each Date.StartOfQuarter([Date]), type date),
  #"Inserted End of Quarter" = Table.AddColumn(#"Inserted Start of Quarter", "End of Quarter", each Date.EndOfQuarter([Date]), type date),
  #"Inserted Week of Year" = Table.AddColumn(#"Inserted End of Quarter", "Week of Year", each Date.WeekOfYear([Date], firstDayofWeek), Int64.Type),
  #"Inserted Week of Month" = Table.AddColumn(#"Inserted Week of Year", "Week of Month", each Date.WeekOfMonth([Date], firstDayofWeek), Int64.Type),
  #"Inserted Start of Week" = Table.AddColumn(#"Inserted Week of Month", "Start of Week", each Date.StartOfWeek([Date], firstDayofWeek), type date),
  #"Inserted End of Week" = Table.AddColumn(#"Inserted Start of Week", "End of Week", each Date.EndOfWeek([Date], firstDayofWeek), type date),
  FiscalMonthBaseIndex = 13-StartofFiscalYear,
  adjustedFiscalMonthBaseIndex = if(FiscalMonthBaseIndex&amp;gt;=12 or FiscalMonthBaseIndex&amp;lt;0) then 0 else FiscalMonthBaseIndex,
  #"Added Custom" = Table.AddColumn(#"Inserted End of Week", "FiscalBaseDate", each Date.AddMonths([Date], adjustedFiscalMonthBaseIndex)),
  #"Changed Type1" = Table.TransformColumnTypes(#"Added Custom", {{"FiscalBaseDate", type date}}),
  #"Inserted Year1" = Table.AddColumn(#"Changed Type1", "Year.1", each Date.Year([FiscalBaseDate]), Int64.Type),
  #"Renamed Columns1" = Table.RenameColumns(#"Inserted Year1", {{"Year.1", "Fiscal Year"}}),
  #"Inserted Quarter1" = Table.AddColumn(#"Renamed Columns1", "Quarter.1", each Date.QuarterOfYear([FiscalBaseDate]), Int64.Type),
  #"Renamed Columns2" = Table.RenameColumns(#"Inserted Quarter1", {{"Quarter.1", "Fiscal Quarter"}}),
  #"Inserted Month1" = Table.AddColumn(#"Renamed Columns2", "Month.1", each Date.Month([FiscalBaseDate]), Int64.Type),
  #"Renamed Columns3" = Table.RenameColumns(#"Inserted Month1", {{"Month.1", "Fiscal Month"}}),
  #"Removed Columns" = Table.RemoveColumns(#"Renamed Columns3", {"FiscalBaseDate"}),
  #"Inserted Age" = Table.AddColumn(#"Removed Columns", "Age", each [Date] - Today, type duration),
  #"Extracted Days" = Table.TransformColumns(#"Inserted Age",{{"Age", Duration.Days, Int64.Type}}),
  #"Renamed Columns4" = Table.RenameColumns(#"Extracted Days", {{"Age", "Day Offset"}}),
  #"Added Custom1" = Table.AddColumn(#"Renamed Columns4", "Month Offset", each (([Year]-Date.Year(Today))*12)
+([Month]-Date.Month(Today))),
  #"Changed Type2" = Table.TransformColumnTypes(#"Added Custom1", {{"Month Offset", Int64.Type}}),
  #"Added Custom2" = Table.AddColumn(#"Changed Type2", "Year Offset", each [Year]-Date.Year(Today)),
  #"Changed Type3" = Table.TransformColumnTypes(#"Added Custom2", {{"Year Offset", Int64.Type}}),
  #"Added Custom3" = Table.AddColumn(#"Changed Type3", "Quarter Offset", each (([Year]-Date.Year(Today))*4)
+([Quarter]-Date.QuarterOfYear(Today))),
  #"Changed Type4" = Table.TransformColumnTypes(#"Added Custom3", {{"Quarter Offset", Int64.Type}}),
  #"Added custom" = Table.AddColumn(#"Changed Type4", "Datekey", each Date.ToText(Date.From([Date]), "yyyyMMdd")),
  #"Changed column type" = Table.TransformColumnTypes(#"Added custom", {{"Datekey", Int64.Type}}),
  #"Added custom 1" = Table.AddColumn(#"Changed column type", "Month-Text", each Text.PadStart( Text.From([Month]), 2, "0")),
  #"Changed column type 1" = Table.TransformColumnTypes(#"Added custom 1", {{"Month-Text", type text}}),
  #"Inserted merged column" = Table.AddColumn(#"Changed column type 1", "Month-Year", each Text.Combine({[#"Month-Text"], Text.From([Year])}, "-"), type text),
  #"Extracted first characters" = Table.TransformColumns(#"Inserted merged column", {{"Month Name", each Text.Start(_, 3), type text}}),
  #"Extracted first characters 1" = Table.TransformColumns(#"Extracted first characters", {{"Day Name", each Text.Start(_, 3), type text}})
in
    #"Extracted first characters 1"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I then added this in DAX , seems to work.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;1st Monday of Month = 
IF ('DIM Date Test'[Day Name] = "Mon" &amp;amp;&amp;amp; DAY('DIM Date Test'[Date]) &amp;lt; 7 , 1, 0)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;Joe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;If you found my answer helpful and it solved your issue, please accept as solution&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2024 07:06:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-in-date-table-creation/m-p/3809614#M148987</guid>
      <dc:creator>Joe_Barry</dc:creator>
      <dc:date>2024-04-04T07:06:50Z</dc:date>
    </item>
    <item>
      <title>Re: Need help in date table creation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-in-date-table-creation/m-p/3813058#M149129</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="521880" data-lia-user-login="Navaneetharaju_" class="lia-mention lia-mention-user"&gt;Navaneetharaju_&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Date table =&lt;BR /&gt;ADDCOLUMNS(&lt;BR /&gt;CALENDAR(DATE(2014, 01, 01), DATE(YEAR(TODAY()), 12, 31)),&lt;BR /&gt;"LastDayOfMonth", EOMONTH([Date], 0),&lt;BR /&gt;"FirstMondayOfMonth", IF(WEEKDAY([Date]) = 2 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 7, 1, 0),&lt;BR /&gt;"SecondMondayOfMonth", IF(WEEKDAY([Date]) = 2 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 7 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 14, 1, 0),&lt;BR /&gt;"ThirdMondayOfMonth", IF(WEEKDAY([Date]) = 2 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 14 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 21, 1, 0),&lt;BR /&gt;"FourthMondayOfMonth", IF(WEEKDAY([Date]) = 2 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 21 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 28, 1, 0),&lt;BR /&gt;"FifthMondayOfMonth", IF(WEEKDAY([Date]) = 2 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 28 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 31, 1, 0),&lt;BR /&gt;"LastMondayOfMonth", IF(WEEKDAY(EOMONTH([Date], 0)) = 2, 1, 0),&lt;BR /&gt;"FirstTuesdayOfMonth", IF(WEEKDAY([Date]) = 3 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 7, 1, 0),&lt;BR /&gt;"SecondTuesdayOfMonth", IF(WEEKDAY([Date]) = 3 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 7 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 14, 1, 0),&lt;BR /&gt;"ThirdTuesdayOfMonth", IF(WEEKDAY([Date]) = 3 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 14 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 21, 1, 0),&lt;BR /&gt;"FourthTuesdayOfMonth", IF(WEEKDAY([Date]) = 3 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 21 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 28, 1, 0),&lt;BR /&gt;"FifthTuesdayOfMonth", IF(WEEKDAY([Date]) = 3 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 28 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 31, 1, 0),&lt;BR /&gt;"LastTuesdayOfMonth", IF(WEEKDAY(EOMONTH([Date], 0)) = 3, 1, 0),&lt;BR /&gt;"FirstWednesdayOfMonth", IF(WEEKDAY([Date]) = 4 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 7, 1, 0),&lt;BR /&gt;"SecondWednesdayOfMonth", IF(WEEKDAY([Date]) = 4 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 7 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 14, 1, 0),&lt;BR /&gt;"ThirdWednesdayOfMonth", IF(WEEKDAY([Date]) = 4 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 14 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 21, 1, 0),&lt;BR /&gt;"FourthWednesdayOfMonth", IF(WEEKDAY([Date]) = 4 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 21 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 28, 1, 0),&lt;BR /&gt;"FifthWednesdayOfMonth", IF(WEEKDAY([Date]) = 4 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 28 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 31, 1, 0),&lt;BR /&gt;"LastWednesdayOfMonth", IF(WEEKDAY(EOMONTH([Date], 0)) = 4, 1, 0),&lt;BR /&gt;"FirstThursdayOfMonth", IF(WEEKDAY([Date]) = 5 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 7, 1, 0),&lt;BR /&gt;"SecondThursdayOfMonth", IF(WEEKDAY([Date]) = 5 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 7 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 14, 1, 0),&lt;BR /&gt;"ThirdThursdayOfMonth", IF(WEEKDAY([Date]) = 5 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 14 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 21, 1, 0),&lt;BR /&gt;"FourthThursdayOfMonth", IF(WEEKDAY([Date]) = 5 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 21 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 28, 1, 0),&lt;BR /&gt;"FifthThursdayOfMonth", IF(WEEKDAY([Date]) = 5 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 28 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 31, 1, 0),&lt;BR /&gt;"LastThursdayOfMonth", IF(WEEKDAY(EOMONTH([Date], 0)) = 5, 1, 0),&lt;BR /&gt;"FirstFridayOfMonth", IF(WEEKDAY([Date]) = 6 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 7, 1, 0),&lt;BR /&gt;"SecondFridayOfMonth", IF(WEEKDAY([Date]) = 6 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 7 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 14, 1, 0),&lt;BR /&gt;"ThirdFridayOfMonth", IF(WEEKDAY([Date]) = 6 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 14 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 21, 1, 0),&lt;BR /&gt;"FourthFridayOfMonth", IF(WEEKDAY([Date]) = 6 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 21 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 28, 1, 0),&lt;BR /&gt;"FifthFridayOfMonth", IF(WEEKDAY([Date]) = 6 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 28 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 31, 1, 0),&lt;BR /&gt;"LastFridayOfMonth", IF(WEEKDAY(EOMONTH([Date], 0)) = 6, 1, 0),&lt;BR /&gt;"FirstSaturdayOfMonth", IF(WEEKDAY([Date]) = 7 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 7, 1, 0),&lt;BR /&gt;"SecondSaturdayOfMonth", IF(WEEKDAY([Date]) = 7 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 7 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 14, 1, 0),&lt;BR /&gt;"ThirdSaturdayOfMonth", IF(WEEKDAY([Date]) = 7 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 14 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 21, 1, 0),&lt;BR /&gt;"FourthSaturdayOfMonth", IF(WEEKDAY([Date]) = 7 &amp;amp;&amp;amp; DAY([Date]) &amp;gt; 21 &amp;amp;&amp;amp; DAY([Date]) &amp;lt;= 28, 1, 0),&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2024 09:30:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-in-date-table-creation/m-p/3813058#M149129</guid>
      <dc:creator>johnbasha33</dc:creator>
      <dc:date>2024-04-05T09:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: Need help in date table creation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-in-date-table-creation/m-p/3817291#M149295</link>
      <description>&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="521880" data-lia-user-login="Navaneetharaju_" class="lia-mention lia-mention-user"&gt;Navaneetharaju_&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Did the above suggestions help with your scenario? if that is the case, you can consider Kudo or Accept the helpful suggestions to help others who faced similar requirements.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;If these also don't help, please share more detailed information and description to help us clarify your scenario to test.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;&lt;A href="http://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;How to Get Your Question Answered Quickly&amp;nbsp;&lt;/A&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Xiaoxin Sheng&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2024 01:42:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-in-date-table-creation/m-p/3817291#M149295</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-04-08T01:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: Need help in date table creation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-in-date-table-creation/m-p/3826683#M149614</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="585150" data-lia-user-login="johnbasha33" class="lia-mention lia-mention-user"&gt;johnbasha33&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="707963" data-lia-user-login="Joe_Barry" class="lia-mention lia-mention-user"&gt;Joe_Barry&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Thanks for your response,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Responses that provided from you both works fine.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let keep in touch.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2024 09:59:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-in-date-table-creation/m-p/3826683#M149614</guid>
      <dc:creator>Navaneetharaju_</dc:creator>
      <dc:date>2024-04-10T09:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: Need help in date table creation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-in-date-table-creation/m-p/3826742#M149616</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="521880" data-lia-user-login="Navaneetharaju_" class="lia-mention lia-mention-user"&gt;Navaneetharaju_&lt;/a&gt;&amp;nbsp; glad it helped you.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;can you please give Kudos and mark it as solution..&lt;BR /&gt;&lt;BR /&gt;Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2024 10:09:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-in-date-table-creation/m-p/3826742#M149616</guid>
      <dc:creator>johnbasha33</dc:creator>
      <dc:date>2024-04-10T10:09:23Z</dc:date>
    </item>
  </channel>
</rss>

