<?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: How to subtract 3 months from a Date, then find nearest possible date from a slicer. in Desktop</title>
    <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486649#M885271</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="96305" data-lia-user-login="hnguy71" class="lia-mention lia-mention-user"&gt;hnguy71&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry, which part did I use the Date from Sheet1? The Code that I used for DateMinusThree is all using SlicerTbl Date:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DateMinusThree = 
VAR _SelectedRank = SELECTEDVALUE(SlicerTbl[RankDate], MAX(SlicerTbl[RankDate]))
VAR _EvalRank = _SelectedRank - 3
VAR _GetRank = IF(_EvalRank &amp;lt; 1, 1, _EvalRank)
VAR _GetDate = CALCULATE(MAX(SlicerTbl[Date]), SlicerTbl[RankDate] = _GetRank, REMOVEFILTERS(SlicerTbl))

RETURN
_GetDate&lt;/LI-CODE&gt;</description>
    <pubDate>Sat, 30 Apr 2022 02:27:43 GMT</pubDate>
    <dc:creator>Deermeat</dc:creator>
    <dc:date>2022-04-30T02:27:43Z</dc:date>
    <item>
      <title>How to subtract 3 months from a Date, then find nearest possible date from a slicer.</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486574#M885245</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I currently have a list of dates in a slicer in single select:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Today's Date (Ex: 2 May 2022)&lt;/LI&gt;&lt;LI&gt;29 April 2022&lt;/LI&gt;&lt;LI&gt;31 Mar 2022&lt;/LI&gt;&lt;LI&gt;28 Feb 2022&lt;/LI&gt;&lt;LI&gt;31 Jan 2022&lt;/LI&gt;&lt;LI&gt;31 Dec 2021&lt;/LI&gt;&lt;LI&gt;30 Nov 2021&lt;/LI&gt;&lt;LI&gt;29 Oct 2021&lt;/LI&gt;&lt;LI&gt;30 Sep 2021&lt;/LI&gt;&lt;LI&gt;All the way to 2011.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The list consist of &lt;STRONG&gt;today's date&lt;/STRONG&gt; and the &lt;STRONG&gt;date for end of each month&lt;/STRONG&gt;. However, on months that ends on a weekend, it will have the date on Friday instead of the weekend. Example: April 2022, ends on 30 April 2022, but list has 29 April 2022.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I'm trying to do is when a date is chosen in the slicer, I want to subtract 3 months from that date and find the nearest possible date (this is necessary due to some dates ending on Friday instead of weekend issue).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anybody has any idea how I can do this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sample Dataset:&amp;nbsp;&lt;A href="https://drive.google.com/file/d/1sy5naT4OTcBUd9fcLJJG7KaFxXgSdPUB/view?usp=sharing" target="_blank"&gt;https://drive.google.com/file/d/1sy5naT4OTcBUd9fcLJJG7KaFxXgSdPUB/view?usp=sharing&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help!&lt;/P&gt;</description>
      <pubDate>Sat, 30 Apr 2022 00:12:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486574#M885245</guid>
      <dc:creator>Deermeat</dc:creator>
      <dc:date>2022-04-30T00:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to subtract 3 months from a Date, then find nearest possible date from a slicer.</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486606#M885255</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hey&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="369503" data-lia-user-login="Deermeat" class="lia-mention lia-mention-user"&gt;Deermeat&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think the easiest quick win method is to add a rank to your slicer table:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DateRank = RANKX(FILTER(Slicer, [Date] &amp;lt; EARLIER([Date])), [Date],,ASC)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&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;Then in a measure you'd just ask to return the rank and subtract by 3:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DateMinusThree = 
VAR _SelectedRank = SELECTEDVALUE(Slicer[DateRank], MAX(Slicer[DateRank]))
VAR _EvalRank = _SelectedRank - 3
VAR _GetRank = IF(_EvalRank &amp;lt; 1, 1, _EvalRank)
VAR _GetDate = CALCULATE(MAX(Slicer[Date]), Slicer[DateRank] = _GetRank, REMOVEFILTERS(Slicer))

RETURN

_GetDate&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&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;</description>
      <pubDate>Sat, 30 Apr 2022 01:21:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486606#M885255</guid>
      <dc:creator>hnguy71</dc:creator>
      <dc:date>2022-04-30T01:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to subtract 3 months from a Date, then find nearest possible date from a slicer.</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486615#M885259</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="96305" data-lia-user-login="hnguy71" class="lia-mention lia-mention-user"&gt;hnguy71&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the reply. Could I know what exactly is a slicer table and how this can be created? My slicer is just by itself without a table? Its generated from a column in my original data table right?&lt;/P&gt;</description>
      <pubDate>Sat, 30 Apr 2022 01:31:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486615#M885259</guid>
      <dc:creator>Deermeat</dc:creator>
      <dc:date>2022-04-30T01:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to subtract 3 months from a Date, then find nearest possible date from a slicer.</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486622#M885262</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="369503" data-lia-user-login="Deermeat" class="lia-mention lia-mention-user"&gt;Deermeat&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That's somewhat correct. It's primarily a disconnected table possibly containing all your dates from one or many tables. These dates can be derived from multple sources and it's ultimately up to you on how you create your slicer table. Here's a sample:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SlicerTbl = 
VAR _Dates = DISTINCT(FactTable[Date]) // Substitute this for your dates from fact table.

RETURN

GENERATE( 
    _Dates,
    ROW("RankDate", RANKX(FILTER(_Dates, [Date] &amp;lt; EARLIER([Date])), [Date],,ASC))
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&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;</description>
      <pubDate>Sat, 30 Apr 2022 01:47:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486622#M885262</guid>
      <dc:creator>hnguy71</dc:creator>
      <dc:date>2022-04-30T01:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to subtract 3 months from a Date, then find nearest possible date from a slicer.</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486625#M885263</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="96305" data-lia-user-login="hnguy71" class="lia-mention lia-mention-user"&gt;hnguy71&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Thank you very much. I understand how to get the independent table to work, however when I used the measure formula after adapting it to my report. It keeps displaying the same date without change.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Do you know why this might be the case?&lt;/P&gt;</description>
      <pubDate>Sat, 30 Apr 2022 02:10:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486625#M885263</guid>
      <dc:creator>Deermeat</dc:creator>
      <dc:date>2022-04-30T02:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to subtract 3 months from a Date, then find nearest possible date from a slicer.</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486640#M885268</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="369503" data-lia-user-login="Deermeat" class="lia-mention lia-mention-user"&gt;Deermeat&lt;/a&gt;&amp;nbsp;, you would have to supply a sample. I can't immediately tell what the issue may be.&lt;/P&gt;</description>
      <pubDate>Sat, 30 Apr 2022 02:14:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486640#M885268</guid>
      <dc:creator>hnguy71</dc:creator>
      <dc:date>2022-04-30T02:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to subtract 3 months from a Date, then find nearest possible date from a slicer.</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486645#M885269</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="96305" data-lia-user-login="hnguy71" class="lia-mention lia-mention-user"&gt;hnguy71&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here's a link to the file!&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/file/d/1niMibueGHS-L6i0FeX8fyh6nZc0PZKHf/view?usp=sharing" target="_blank" rel="noopener"&gt;https://drive.google.com/file/d/1niMibueGHS-L6i0FeX8fyh6nZc0PZKHf/view?usp=sharing&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 30 Apr 2022 02:17:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486645#M885269</guid>
      <dc:creator>Deermeat</dc:creator>
      <dc:date>2022-04-30T02:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to subtract 3 months from a Date, then find nearest possible date from a slicer.</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486647#M885270</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="369503" data-lia-user-login="Deermeat" class="lia-mention lia-mention-user"&gt;Deermeat&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I see the issue. You're using the Date from your Sheet1 table. Instead, your date needs to be from the SlicerTbl.&lt;/P&gt;</description>
      <pubDate>Sat, 30 Apr 2022 02:22:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486647#M885270</guid>
      <dc:creator>hnguy71</dc:creator>
      <dc:date>2022-04-30T02:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to subtract 3 months from a Date, then find nearest possible date from a slicer.</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486649#M885271</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="96305" data-lia-user-login="hnguy71" class="lia-mention lia-mention-user"&gt;hnguy71&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry, which part did I use the Date from Sheet1? The Code that I used for DateMinusThree is all using SlicerTbl Date:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DateMinusThree = 
VAR _SelectedRank = SELECTEDVALUE(SlicerTbl[RankDate], MAX(SlicerTbl[RankDate]))
VAR _EvalRank = _SelectedRank - 3
VAR _GetRank = IF(_EvalRank &amp;lt; 1, 1, _EvalRank)
VAR _GetDate = CALCULATE(MAX(SlicerTbl[Date]), SlicerTbl[RankDate] = _GetRank, REMOVEFILTERS(SlicerTbl))

RETURN
_GetDate&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 30 Apr 2022 02:27:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486649#M885271</guid>
      <dc:creator>Deermeat</dc:creator>
      <dc:date>2022-04-30T02:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to subtract 3 months from a Date, then find nearest possible date from a slicer.</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486656#M885273</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="369503" data-lia-user-login="Deermeat" class="lia-mention lia-mention-user"&gt;Deermeat&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;In your slicer visual, you're using the date from Sheet1. You need to replace the field in your visual to your SlicerTbl[Date] field.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 30 Apr 2022 02:34:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486656#M885273</guid>
      <dc:creator>hnguy71</dc:creator>
      <dc:date>2022-04-30T02:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to subtract 3 months from a Date, then find nearest possible date from a slicer.</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486658#M885274</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="96305" data-lia-user-login="hnguy71" class="lia-mention lia-mention-user"&gt;hnguy71&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Omg, it works now. Thank you so much for your help!&lt;/P&gt;</description>
      <pubDate>Sat, 30 Apr 2022 02:37:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486658#M885274</guid>
      <dc:creator>Deermeat</dc:creator>
      <dc:date>2022-04-30T02:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to subtract 3 months from a Date, then find nearest possible date from a slicer.</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486665#M885276</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="96305" data-lia-user-login="hnguy71" class="lia-mention lia-mention-user"&gt;hnguy71&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could I ask you one last question. When I set the slicer to use the SlicerTbl's Date, it broke the chart that is on the right. It no longer can be filtered by the slicer.&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;I tried connecting a relationship between Sheet1 Date and SlicerTbl Date, but this breaks my 3MthsAgo Average Score Measure:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;3MthsAgo Average Score = 
VAR _SelectedRank = SELECTEDVALUE(SlicerTbl[RankDate], MAX(SlicerTbl[RankDate]))
VAR _EvalRank = _SelectedRank - 3
VAR _GetRank = IF(_EvalRank &amp;lt; 1, 1, _EvalRank)
VAR _GetDate = CALCULATE(MAX(SlicerTbl[Date]), SlicerTbl[RankDate] = _GetRank, REMOVEFILTERS(SlicerTbl))
VAR _XMonYear = YEAR(_GetDate)
VAR _XMonMonth = MONTH(_GetDate)
RETURN
CALCULATE(
    AVERAGE( Sheet1[Score] ), 
        ALL( Sheet1[Score] ), 
            YEAR(Sheet1[Date]) = _XMonYear,
            MONTH(Sheet1[Date]) = _XMonMonth)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you know how this can be fixed?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;New Data:&amp;nbsp;&lt;A href="https://drive.google.com/file/d/12k-dHYN0YcgeRs1DkpqbVDAGcHT-iZTJ/view?usp=sharing" target="_blank" rel="noopener"&gt;https://drive.google.com/file/d/12k-dHYN0YcgeRs1DkpqbVDAGcHT-iZTJ/view?usp=sharing&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 30 Apr 2022 02:54:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486665#M885276</guid>
      <dc:creator>Deermeat</dc:creator>
      <dc:date>2022-04-30T02:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to subtract 3 months from a Date, then find nearest possible date from a slicer.</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486671#M885278</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="369503" data-lia-user-login="Deermeat" class="lia-mention lia-mention-user"&gt;Deermeat&lt;/a&gt;&amp;nbsp;, it seems to be working. Could you describe to me the issue?&lt;/P&gt;</description>
      <pubDate>Sat, 30 Apr 2022 03:01:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486671#M885278</guid>
      <dc:creator>hnguy71</dc:creator>
      <dc:date>2022-04-30T03:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to subtract 3 months from a Date, then find nearest possible date from a slicer.</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486675#M885280</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="96305" data-lia-user-login="hnguy71" class="lia-mention lia-mention-user"&gt;hnguy71&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;The graph on the left is showing too many points. It shows all possible points across the 1 year data, instead of according to the slicer. The slicer with Date from SlicerTbl allow the measure 3MthsAgo Average Score to work, but it does not filter the graph. The slicer with Date from Sheet1 allow the graph to be filtered, but does not work for the measure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have managed to 'fix' this by syncing the two slicer together and hiding one of them. A bit janky, but it works now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help!&lt;/P&gt;</description>
      <pubDate>Sat, 30 Apr 2022 03:04:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-subtract-3-months-from-a-Date-then-find-nearest-possible/m-p/2486675#M885280</guid>
      <dc:creator>Deermeat</dc:creator>
      <dc:date>2022-04-30T03:04:15Z</dc:date>
    </item>
  </channel>
</rss>

