<?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: Filter table, convert column from integer to date and +1 day in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4625932#M177072</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="712289" data-lia-user-login="Youri98" class="lia-mention lia-mention-user"&gt;Youri98&lt;/a&gt;&amp;nbsp; You can combine using var&lt;/P&gt;
&lt;P&gt;dax&lt;BR /&gt;Aantal aansluitend verhuurd =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;DISTINCTCOUNT('FEIT_Verhuur'[%ContractKey]),&lt;BR /&gt;FEIT_Verhuur[WAARDEGETAL] = 1.00,&lt;BR /&gt;FEIT_Verhuur[Subonderwerp] IN { "Days" },&lt;BR /&gt;VAR ConvertedDate = DATE(&lt;BR /&gt;INT(LEFT(FEIT_Verhuur[IntegerDate], 4)),&lt;BR /&gt;INT(MID(FEIT_Verhuur[IntegerDate], 5, 2)),&lt;BR /&gt;INT(RIGHT(FEIT_Verhuur[IntegerDate], 2))&lt;BR /&gt;)&lt;BR /&gt;RETURN DATEADD(ConvertedDate, 1, DAY)&lt;BR /&gt;)&lt;/P&gt;</description>
    <pubDate>Wed, 26 Mar 2025 13:20:49 GMT</pubDate>
    <dc:creator>bhanu_gautam</dc:creator>
    <dc:date>2025-03-26T13:20:49Z</dc:date>
    <item>
      <title>Filter table, convert column from integer to date and +1 day</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4625901#M177064</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I'm trying to do is:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1st step: filter table, this works with the DAX:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Aantal aansluitend verhuurd =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;DISTINCTCOUNT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'FEIT_Verhuur'&lt;/SPAN&gt;&lt;SPAN&gt;[%ContractKey]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;FEIT_Verhuur&lt;/SPAN&gt;&lt;SPAN&gt;[WAARDEGETAL]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;1.00&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;FEIT_Verhuur&lt;/SPAN&gt;&lt;SPAN&gt;[Subonderwerp]&lt;/SPAN&gt; &lt;SPAN&gt;IN&lt;/SPAN&gt;&lt;SPAN&gt; { &lt;/SPAN&gt;&lt;SPAN&gt;"Days"&lt;/SPAN&gt;&lt;SPAN&gt; })&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;2nd step: When I do this, there's a column that consists of the date, but it's an integer type, '20250131' for example. So I would like to convert it to a date type (with a DAX).&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;3rd step: After doing this, I would like to add +1 day to the date. Because I would like to show the dates that are at the end of the month in the next month (e.g. 20250131 = February, 20250228 = March).&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Would this be possible to do?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thanks in advance.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 26 Mar 2025 13:03:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4625901#M177064</guid>
      <dc:creator>Youri98</dc:creator>
      <dc:date>2025-03-26T13:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: Filter table, convert column from integer to date and +1 day</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4625921#M177068</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="712289" data-lia-user-login="Youri98" class="lia-mention lia-mention-user"&gt;Youri98&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use the DATE function to convert the integer date to a date type. Assuming your integer date is in the format YYYYMMDD, you can use the following DAX formula:&lt;/P&gt;
&lt;P&gt;dax&lt;BR /&gt;ConvertedDate = &lt;BR /&gt;DATE(&lt;BR /&gt;INT(LEFT(FEIT_Verhuur[IntegerDate], 4)), &lt;BR /&gt;INT(MID(FEIT_Verhuur[IntegerDate], 5, 2)), &lt;BR /&gt;INT(RIGHT(FEIT_Verhuur[IntegerDate], 2))&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you have the date in the correct format, you can add one day to it using the DATEADD function:&lt;/P&gt;
&lt;P&gt;dax&lt;BR /&gt;NextMonthDate = &lt;BR /&gt;DATEADD(&lt;BR /&gt;DATE(&lt;BR /&gt;INT(LEFT(FEIT_Verhuur[IntegerDate], 4)), &lt;BR /&gt;INT(MID(FEIT_Verhuur[IntegerDate], 5, 2)), &lt;BR /&gt;INT(RIGHT(FEIT_Verhuur[IntegerDate], 2))&lt;BR /&gt;), &lt;BR /&gt;1, &lt;BR /&gt;DAY&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 13:11:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4625921#M177068</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-03-26T13:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: Filter table, convert column from integer to date and +1 day</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4625928#M177070</link>
      <description>&lt;P&gt;So, I can do both in 1 DAX directly, right? And how would I use this date in combination with the filters I used in the different DAX.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 13:17:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4625928#M177070</guid>
      <dc:creator>Youri98</dc:creator>
      <dc:date>2025-03-26T13:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: Filter table, convert column from integer to date and +1 day</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4625929#M177071</link>
      <description>&lt;P&gt;Well, you &lt;EM&gt;could&amp;nbsp;&amp;nbsp;&lt;/EM&gt;convert the number to a string (FORMAT) and then to a date (DATEVALUE), but I do not recommend doing this in DAX at all. You're better of doing this sort of thing in Power Query, or even your data source.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 13:19:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4625929#M177071</guid>
      <dc:creator>sjoerdvn</dc:creator>
      <dc:date>2025-03-26T13:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: Filter table, convert column from integer to date and +1 day</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4625932#M177072</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="712289" data-lia-user-login="Youri98" class="lia-mention lia-mention-user"&gt;Youri98&lt;/a&gt;&amp;nbsp; You can combine using var&lt;/P&gt;
&lt;P&gt;dax&lt;BR /&gt;Aantal aansluitend verhuurd =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;DISTINCTCOUNT('FEIT_Verhuur'[%ContractKey]),&lt;BR /&gt;FEIT_Verhuur[WAARDEGETAL] = 1.00,&lt;BR /&gt;FEIT_Verhuur[Subonderwerp] IN { "Days" },&lt;BR /&gt;VAR ConvertedDate = DATE(&lt;BR /&gt;INT(LEFT(FEIT_Verhuur[IntegerDate], 4)),&lt;BR /&gt;INT(MID(FEIT_Verhuur[IntegerDate], 5, 2)),&lt;BR /&gt;INT(RIGHT(FEIT_Verhuur[IntegerDate], 2))&lt;BR /&gt;)&lt;BR /&gt;RETURN DATEADD(ConvertedDate, 1, DAY)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 13:20:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4625932#M177072</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-03-26T13:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: Filter table, convert column from integer to date and +1 day</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4625937#M177073</link>
      <description>&lt;P&gt;Thanks for the reply, if this was an option I would do it as well. But this is not possible in this situation.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 13:23:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4625937#M177073</guid>
      <dc:creator>Youri98</dc:creator>
      <dc:date>2025-03-26T13:23:41Z</dc:date>
    </item>
    <item>
      <title>Re: Filter table, convert column from integer to date and +1 day</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4625948#M177075</link>
      <description>&lt;P&gt;I get this error: A single value for column 'DATUM' in table 'FEIT_Verhuur' cannot be determined. This can happen when a measure formula refers to a column that contains many values without specifying an aggregation such as min, max, count, or sum to get a single result.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 13:29:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4625948#M177075</guid>
      <dc:creator>Youri98</dc:creator>
      <dc:date>2025-03-26T13:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: Filter table, convert column from integer to date and +1 day</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4627207#M177140</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="712289" data-lia-user-login="Youri98" class="lia-mention lia-mention-user"&gt;Youri98&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to Microsoft Fabric Community Forum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After multiple workarounds, I found that the IntegerDate column should be in &lt;STRONG&gt;text&lt;/STRONG&gt; format. If it's stored as a whole number, Power BI misinterprets the data type, leading to incorrect results.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a new Calculated column for converting IntegerDate to a date:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;ConvertedDate =
VAR DateText = FORMAT(Sheet1[IntegerDate], "00000000") -- Ensures 8-digit format
RETURN DATE(
LEFT(DateText, 4), -- Extract Year
MID(DateText, 5, 2), -- Extract Month
RIGHT(DateText, 2) -- Extract Day
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create another new column to add +1 day:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;NextDay = Sheet1[ConvertedDate].[Date] + 1&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the output in DD/MM/YYYY&amp;nbsp;format:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider &lt;STRONG&gt;Accepting as solution&lt;/STRONG&gt; to help the other members find it more quickly, don't forget to give a "&lt;STRONG&gt;Kudos&lt;/STRONG&gt;" – I’d truly appreciate it!&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Vinay Pabbu&lt;/P&gt;</description>
      <pubDate>Thu, 27 Mar 2025 10:14:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4627207#M177140</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-03-27T10:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: Filter table, convert column from integer to date and +1 day</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4627329#M177142</link>
      <description>&lt;P&gt;Thank you for the reply. As we don't manage the data set I can't add columns myself so that's why I wanted to see if it would be possible with DAX. But I got multiple messages now saying that it's not possible with DAX. Thanks for trying to help. I guess I'll just have to get back to the owners of the data set and see if they can add the columns for me.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Mar 2025 10:57:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4627329#M177142</guid>
      <dc:creator>Youri98</dc:creator>
      <dc:date>2025-03-27T10:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: Filter table, convert column from integer to date and +1 day</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4741700#M181597</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="712289" data-lia-user-login="Youri98" class="lia-mention lia-mention-user"&gt;Youri98&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the update. I hope that solves your issue. Please share the details here after it is solved.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Vinay Pabbu&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jul 2025 11:12:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4741700#M181597</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-07-07T11:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: Filter table, convert column from integer to date and +1 day</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4755187#M182062</link>
      <description>&lt;P&gt;Hi&amp;nbsp;, Thank you for reaching out to the Microsoft Community Forum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have reproduced your scenario in Power BI Desktop and successfully implemented a solution where we built a DAX measure that counts distinct contracts from the FEIT_Verhuur table where WAARDEGETAL = 1.00 and Subonderwerp = "Days", and shifts the DateInt value forward by one day to get NextDay. A disconnected MonthTable slicer allows users to filter based on the month of this NextDay. The measure updates visuals like a card to show how many contracts roll over into the selected month, such as showing February results when DateInt is 20250131.&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;For your reference, I’ve attached the working &lt;STRONG&gt;.pbix&lt;/STRONG&gt; file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this helped solve the issue, please consider marking it&amp;nbsp;&lt;STRONG&gt;“Accept as Solution”&lt;/STRONG&gt; so others with similar queries may find it more easily. If not, please share the details, always happy to help.&lt;BR /&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jul 2025 09:41:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4755187#M182062</guid>
      <dc:creator>v-hashadapu</dc:creator>
      <dc:date>2025-07-09T09:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: Filter table, convert column from integer to date and +1 day</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4755341#M182068</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="712289" data-lia-user-login="Youri98" class="lia-mention lia-mention-user"&gt;Youri98&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-pm-slice="0 0 []"&gt;Yes, what you're trying to do in Power BI is definitely possible using DAX, and it can be broken down into three clear steps. In the first step, you've already correctly filtered your data using a CALCULATE expression to count distinct contract keys based on conditions like WAARDEGETAL = 1.00 and specific Subonderwerp values. In the second step, since your date is stored as an integer in the format YYYYMMDD (e.g., 20250131), you can convert it to a proper date using the DATE() function in DAX. This involves extracting the year, month, and day using basic arithmetic. For example, you can create a calculated column with:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;ConvertedDate = DATE(
    DIVIDE('FEIT_Verhuur'[DateInt], 10000), 
    MOD(DIVIDE('FEIT_Verhuur'[DateInt], 100), 100), 
    MOD('FEIT_Verhuur'[DateInt], 100)
)
&lt;/LI-CODE&gt;
&lt;P data-pm-slice="0 0 []"&gt;This will transform an integer like 20250131 into a true date value. In the third step, you can then add 1 day to this new date using +1, like this:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;ShiftedDate = 'FEIT_Verhuur'[ConvertedDate] + 1
&lt;/LI-CODE&gt;
&lt;P&gt;This effectively moves end-of-month dates (e.g., January 31) into the next month (e.g., February 1), which is useful when you want to report activities as occurring in the following month. So yes, by using DAX in calculated columns, you can convert the integer to a date and shift it forward by one day for your reporting logic.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jul 2025 12:35:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4755341#M182068</guid>
      <dc:creator>Poojara_D12</dc:creator>
      <dc:date>2025-07-07T12:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: Filter table, convert column from integer to date and +1 day</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4758996#M182237</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="712289" data-lia-user-login="Youri98" class="lia-mention lia-mention-user"&gt;Youri98&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;SPAN data-teams="true"&gt;Hope you are doing well. Kindly let us know if the issue has been resolved or if further assistance is needed. Your input could be helpful to others in the community.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2025 13:03:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4758996#M182237</guid>
      <dc:creator>v-hashadapu</dc:creator>
      <dc:date>2025-07-10T13:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: Filter table, convert column from integer to date and +1 day</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4762170#M182377</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="712289" data-lia-user-login="Youri98" class="lia-mention lia-mention-user"&gt;Youri98&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;SPAN data-teams="true"&gt;hope you are doing great. May we know if your issue is solved or if you are still experiencing difficulties. Please share the details as it will help the community, especially others with similar issues.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jul 2025 12:38:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4762170#M182377</guid>
      <dc:creator>v-hashadapu</dc:creator>
      <dc:date>2025-07-14T12:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: Filter table, convert column from integer to date and +1 day</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4766856#M182598</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="712289" data-lia-user-login="Youri98" class="lia-mention lia-mention-user"&gt;Youri98&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;SPAN data-teams="true"&gt;Hope you're doing fine. Can you confirm if the problem is solved or still persists? Sharing your details will help others in the community.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jul 2025 11:05:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-table-convert-column-from-integer-to-date-and-1-day/m-p/4766856#M182598</guid>
      <dc:creator>v-hashadapu</dc:creator>
      <dc:date>2025-07-17T11:05:17Z</dc:date>
    </item>
  </channel>
</rss>

