<?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: Show value from the last 30-90 days from this current date? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-value-from-the-last-30-90-days-from-this-current-date/m-p/2567704#M73217</link>
    <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="179903" data-lia-user-login="Whitewater100" class="lia-mention lia-mention-user"&gt;Whitewater100&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;That worked brilliantly!&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 09 Jun 2022 01:28:02 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-06-09T01:28:02Z</dc:date>
    <item>
      <title>Show value from the last 30-90 days from this current date?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-value-from-the-last-30-90-days-from-this-current-date/m-p/2567677#M73211</link>
      <description>&lt;P&gt;Hi there,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I was just wondering if there is a way I can create a measure that will show a total value for the last 30-90 days?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;So currently I have a table with two columns, an ID column and an date column. I have created a count measure that counts the ID's and it's called [Total Users] then I have a date column that's called [active_date].&lt;BR /&gt;&lt;BR /&gt;How would I be able to get the [Total Users] from the last 30-90 days. I've tried the relative date filter tool but you can't set between conditions that's relative to todays date, so I'm hoping this can be done in a measure?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2022 00:47:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-value-from-the-last-30-90-days-from-this-current-date/m-p/2567677#M73211</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-06-09T00:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: Show value from the last 30-90 days from this current date?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-value-from-the-last-30-90-days-from-this-current-date/m-p/2567691#M73216</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;Can you add date table and connect to our fact table on Date field? I'll paste new Date Table code below.. It should also be marked as a Date Table. Using the Dates[Date] field in your visuals:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Total Retail last 90 to 30 Days = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;lstdate&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;LASTDATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'SalesOrders'[Order_Date]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;lstdateless90&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;lstdate&lt;/SPAN&gt;&lt;SPAN&gt; -&lt;/SPAN&gt;&lt;SPAN&gt;90&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;lstdateless30&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;lstdate&lt;/SPAN&gt;&lt;SPAN&gt; -&lt;/SPAN&gt;&lt;SPAN&gt;30&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Total Users]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;DATESBETWEEN&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Dates[Date]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;lstdateless90&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;lstdateless30&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;Date Table. MODELING&amp;gt; New Table&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;P&gt;Dates = ADDCOLUMNS ( CALENDAR (FIRSTDATE(Sheet1[&amp;nbsp;Date]), TODAY()), "year", YEAR ( [Date] ), "MonthNumber", FORMAT ( [Date], "MM" ), "year-month", FORMAT ( [Date], "YYYY-MM" ), "month-year", FORMAT ( [Date], "MM-'YY" ) )&lt;/P&gt;&lt;P&gt;I would format the Dates[Date Field] to a Date like&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;I hope this helps..&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 09 Jun 2022 01:16:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-value-from-the-last-30-90-days-from-this-current-date/m-p/2567691#M73216</guid>
      <dc:creator>Whitewater100</dc:creator>
      <dc:date>2022-06-09T01:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: Show value from the last 30-90 days from this current date?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-value-from-the-last-30-90-days-from-this-current-date/m-p/2567704#M73217</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="179903" data-lia-user-login="Whitewater100" class="lia-mention lia-mention-user"&gt;Whitewater100&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;That worked brilliantly!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2022 01:28:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-value-from-the-last-30-90-days-from-this-current-date/m-p/2567704#M73217</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-06-09T01:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: Show value from the last 30-90 days from this current date?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-value-from-the-last-30-90-days-from-this-current-date/m-p/2569069#M73297</link>
      <description>&lt;P&gt;Great! Your welcome..&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2022 12:12:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-value-from-the-last-30-90-days-from-this-current-date/m-p/2569069#M73297</guid>
      <dc:creator>Whitewater100</dc:creator>
      <dc:date>2022-06-09T12:12:40Z</dc:date>
    </item>
    <item>
      <title>Re: Show value from the last 30-90 days from this current date?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-value-from-the-last-30-90-days-from-this-current-date/m-p/3015196#M102371</link>
      <description>&lt;P&gt;Hello &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="179903" data-lia-user-login="Whitewater100" class="lia-mention lia-mention-user"&gt;Whitewater100&lt;/a&gt;&amp;nbsp;, can you please help?&lt;/P&gt;&lt;P&gt;I have created, below filter,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;In the marks card I want to display today's date minus what ever the option I pick from the slicer,&lt;/P&gt;&lt;P&gt;So if today is 11 January, 2023 and user pick 'last 6 months' from the slicer then I would like to display,&amp;nbsp;&lt;/P&gt;&lt;P&gt;(11 July, 2022 - 11 January, 2023)&lt;/P&gt;&lt;P&gt;It should keep on changing based on what user pick from the slicer.&lt;/P&gt;&lt;P&gt;How can I do that? Please help!&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>Thu, 12 Jan 2023 00:32:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Show-value-from-the-last-30-90-days-from-this-current-date/m-p/3015196#M102371</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-12T00:32:07Z</dc:date>
    </item>
  </channel>
</rss>

