<?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: Dax for Excel Index Match in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1539573#M30291</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;What is the final result you want?&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Product wise status everyday (the image you showed in the original post); &lt;U&gt;&lt;STRONG&gt;OR&lt;/STRONG&gt;&lt;/U&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;U&gt;&lt;/U&gt;Count of products everyday [without products] (image you have shown in your last post)&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Please clarify.&lt;/P&gt;</description>
    <pubDate>Wed, 09 Dec 2020 00:07:01 GMT</pubDate>
    <dc:creator>Ashish_Mathur</dc:creator>
    <dc:date>2020-12-09T00:07:01Z</dc:date>
    <item>
      <title>Dax for Excel Index Match</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1537624#M30232</link>
      <description>&lt;P&gt;I have products data, can someone advise me to get this excel function into powerbi. I am looking for the dax equivalent of this. Please let me know if any other details are needed from me to make this perhaps more clear.&lt;/P&gt;&lt;P&gt;Here is the link for the pbix file&amp;nbsp;&lt;A href="https://www.dropbox.com/s/5g63f1gucs30kuu/Product%20Excel.pbix?dl=0" target="_blank" rel="noopener"&gt;https://www.dropbox.com/s/5g63f1gucs30kuu/Product%20Excel.pbix?dl=0&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the data&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Product&lt;/TD&gt;&lt;TD&gt;Ordered&lt;/TD&gt;&lt;TD&gt;Shipped&lt;/TD&gt;&lt;TD&gt;Delivered&lt;/TD&gt;&lt;TD&gt;Returned&lt;/TD&gt;&lt;TD&gt;led&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1-Apr-20&lt;/TD&gt;&lt;TD&gt;2-Apr-20&lt;/TD&gt;&lt;TD&gt;1-Jan-00&lt;/TD&gt;&lt;TD&gt;1-Jan-00&lt;/TD&gt;&lt;TD&gt;1-Jan-00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;3-Jan-20&lt;/TD&gt;&lt;TD&gt;6-Jan-20&lt;/TD&gt;&lt;TD&gt;16-Mar-20&lt;/TD&gt;&lt;TD&gt;17-Mar-20&lt;/TD&gt;&lt;TD&gt;1-Jan-00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;6-Apr-20&lt;/TD&gt;&lt;TD&gt;1-Jan-00&lt;/TD&gt;&lt;TD&gt;1-Jan-00&lt;/TD&gt;&lt;TD&gt;1-Jan-00&lt;/TD&gt;&lt;TD&gt;12-Aug-20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;D&lt;/TD&gt;&lt;TD&gt;3-Jan-20&lt;/TD&gt;&lt;TD&gt;1-Jan-00&lt;/TD&gt;&lt;TD&gt;1-Jan-00&lt;/TD&gt;&lt;TD&gt;1-Jan-00&lt;/TD&gt;&lt;TD&gt;6-Jan-20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;E&lt;/TD&gt;&lt;TD&gt;3-Feb-20&lt;/TD&gt;&lt;TD&gt;6-Feb-20&lt;/TD&gt;&lt;TD&gt;16-Apr-20&lt;/TD&gt;&lt;TD&gt;17-Aug-20&lt;/TD&gt;&lt;TD&gt;1-Jan-00&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2020 16:41:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1537624#M30232</guid>
      <dc:creator>satich989</dc:creator>
      <dc:date>2020-12-08T16:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dax for Excel Index Match</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1537818#M30236</link>
      <description>&lt;P&gt;you need to unpivot your fact table, and create a date table. then put the product field in the row and date in the column of a matrix visual. create a measure like below, and put it in the value area.&lt;/P&gt;&lt;P&gt;=VAR _maxdate=MAX(facttable[date]) RETURN IF(MAX(datetable[date]&amp;gt;=_maxdate,CALCULATE(MAX(facttable[status]),factable[date]=_maxdate))&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2020 05:43:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1537818#M30236</guid>
      <dc:creator>wdx223_Daniel</dc:creator>
      <dc:date>2020-12-08T05:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: Dax for Excel Index Match</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1539008#M30259</link>
      <description>&lt;P&gt;Hi Daniel&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the suggestion. Did that and the chart on the right is what I see now. Happy that we got the latest/max status per month, shown in this image.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PBIX Link -&amp;nbsp;&lt;A href="https://www.dropbox.com/s/5g63f1gucs30kuu/Product%20Excel.pbix?dl=0" target="_blank"&gt;https://www.dropbox.com/s/5g63f1gucs30kuu/Product%20Excel.pbix?dl=0&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;It doesnot show blank months in between and the exact thing I am looking for is the count of status per month as seen here in the excel. Any suggestions on how to tweak your measure or anything that needs to be done differently?&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>Tue, 08 Dec 2020 15:59:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1539008#M30259</guid>
      <dc:creator>satich989</dc:creator>
      <dc:date>2020-12-08T15:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dax for Excel Index Match</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1539573#M30291</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;What is the final result you want?&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Product wise status everyday (the image you showed in the original post); &lt;U&gt;&lt;STRONG&gt;OR&lt;/STRONG&gt;&lt;/U&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;U&gt;&lt;/U&gt;Count of products everyday [without products] (image you have shown in your last post)&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Please clarify.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2020 00:07:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1539573#M30291</guid>
      <dc:creator>Ashish_Mathur</dc:creator>
      <dc:date>2020-12-09T00:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: Dax for Excel Index Match</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1539589#M30293</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="215879" data-lia-user-login="satich989" class="lia-mention lia-mention-user"&gt;satich989&lt;/a&gt;&amp;nbsp;you need to break the relationship betwee Table and Date&lt;/P&gt;&lt;P&gt;or update your code like this&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;M = 
VAR _maxdate = CALCULATE(MAX('Table'[Value]),ALL('Date')) 
RETURN 
IF(MAX('Date'[Date]) &amp;gt;=_maxdate,
    CALCULATE(MAX('Table'[Attribute]),'Table'[Value] =_maxdate,ALL('Date'))
)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 09 Dec 2020 00:23:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1539589#M30293</guid>
      <dc:creator>wdx223_Daniel</dc:creator>
      <dc:date>2020-12-09T00:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: Dax for Excel Index Match</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1539730#M30297</link>
      <description>&lt;P&gt;Hi Ashish&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for looking into this problem.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The second is what I finally want - count of status by MONTH. I thought if I could get to the original image, then I can do a count on the status to reach my final requirement.&lt;/P&gt;&lt;P&gt;Final requirement&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2020 02:00:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1539730#M30297</guid>
      <dc:creator>satich989</dc:creator>
      <dc:date>2020-12-09T02:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dax for Excel Index Match</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1539752#M30298</link>
      <description>&lt;P&gt;Tried both of those approaches Daniel and didnot work. This image shows when I removed the date relationship and click filtered on Product B and the chart on right does not show Jan and Feb.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then I enabled 'show items with no data' on the month name and it shows the months but shows them as blank instead of 'Ordered'.&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>Wed, 09 Dec 2020 01:57:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1539752#M30298</guid>
      <dc:creator>satich989</dc:creator>
      <dc:date>2020-12-09T01:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: Dax for Excel Index Match</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1539935#M30300</link>
      <description>&lt;P&gt;&lt;img /&gt;you need a real date table with all dates&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2020 05:14:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1539935#M30300</guid>
      <dc:creator>wdx223_Daniel</dc:creator>
      <dc:date>2020-12-09T05:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: Dax for Excel Index Match</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1541407#M30358</link>
      <description>&lt;P&gt;Awesome, thank you Daniel.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Apolgy for another question - to finsh my analysis I am looking to create a stacked bar chart that shows the latest status in a month and adds that status to next months if blank until there is a new status.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As example - for Product E, it should show&lt;/P&gt;&lt;P&gt;shipped in February and March&lt;/P&gt;&lt;P&gt;delivered in April, May&lt;/P&gt;&lt;P&gt;returned in &amp;nbsp;June until current month (in this case june,)July, August, Sept, Oct, Nov, Dec&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;When not filtered for a product, it shows total&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2020 17:18:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1541407#M30358</guid>
      <dc:creator>satich989</dc:creator>
      <dc:date>2020-12-09T17:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dax for Excel Index Match</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1541890#M30381</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="215879" data-lia-user-login="satich989" class="lia-mention lia-mention-user"&gt;satich989&lt;/a&gt;&amp;nbsp;is this what you want?&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.dropbox.com/s/ki2nud7fv63r53j/Product%20Excel%20%282%29.pbix?dl=0" target="_blank"&gt;https://www.dropbox.com/s/ki2nud7fv63r53j/Product%20Excel%20%282%29.pbix?dl=0&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 01:18:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1541890#M30381</guid>
      <dc:creator>wdx223_Daniel</dc:creator>
      <dc:date>2020-12-10T01:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dax for Excel Index Match</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1542160#M30383</link>
      <description>&lt;P&gt;Thank you again Daniel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Exactly the thing. I did a deep check and works very well, last thing that needs to be addressed is if a product has multiple status on the same day, for example product E is ordered and shipped on the same day, then the dax is breaking and shows both status instead of showing the latest status. Can we incude this extra condition in the dax to only show latest status? I see you created an index field in the status table, may be use that to determine the latest status?&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>Thu, 10 Dec 2020 04:34:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1542160#M30383</guid>
      <dc:creator>satich989</dc:creator>
      <dc:date>2020-12-10T04:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: Dax for Excel Index Match</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1542374#M30388</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="215879" data-lia-user-login="satich989" class="lia-mention lia-mention-user"&gt;satich989&lt;/a&gt;&amp;nbsp;update code like this, it seems work&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;StatusToShow = 
VAR _date =
    MAX ( Dates[Date] )
VAR _maxdate =
    CALCULATE ( MAX ( 'Table'[Date] ), 'Dates'[Date] &amp;lt; _date )
VAR _status =
        CALCULATE (
            CALCULATE (
                MAX ( 'Status'[Index] ),
                'Status'[Status] IN VALUES ( 'Table'[Status] )
            ),
            'Dates'[Date] = _maxdate,
            ALL ( 'Status' )
        )
RETURN
    IF (
        _date &amp;gt;= _maxdate
            &amp;amp;&amp;amp; _date = EOMONTH ( _date, 0 ),
        CALCULATE (
            MAX ( 'Table'[Status] ),
            'Dates'[Date] = _maxdate,
            'Status'[Index] = _status
        )
    )
------------------------------------------------------------
M =
SUMX (
    ALLSELECTED ( 'Table'[Product] ),
    VAR _date =
        MAX ( Dates[Date] )
    VAR _maxdate =
        CALCULATE ( MAX ( 'Table'[Date] ), 'Dates'[Date] &amp;lt;= _date, ALL ( 'Status' ) )
    VAR _status =
        CALCULATE (
            CALCULATE (
                MAX ( 'Status'[Index] ),
                'Status'[Status] IN VALUES ( 'Table'[Status] )
            ),
            'Dates'[Date] = _maxdate,
            ALL ( 'Status' )
        )
    RETURN
        IF (
            _date &amp;gt;= _maxdate
                &amp;amp;&amp;amp; _date = EOMONTH ( _date, 0 ),
            CALCULATE (
                DISTINCTCOUNT ( 'Table'[Product] ),
                'Dates'[Date] = _maxdate,
                'Status'[Index] = _status
            )
        )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 10 Dec 2020 06:58:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1542374#M30388</guid>
      <dc:creator>wdx223_Daniel</dc:creator>
      <dc:date>2020-12-10T06:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: Dax for Excel Index Match</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1543072#M30410</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;You may refer to my solution in &lt;A href="https://1drv.ms/u/s!AnsG4LrWCkhUn_kOykDtdCPSszyGCA?e=K6MaEU" target="_self"&gt;this PBI file&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;I tried to frame another solution with letting the source data stay intact and use only measures but i could not get a count of status wise and month wise poducts.&amp;nbsp; I could only get the last status of each product.&amp;nbsp; May be you or someone else can write a measure to get the count (from where the graph can be crested).&amp;nbsp; You may download that PBI file from &lt;A href="https://1drv.ms/u/s!AnsG4LrWCkhUn_kPounjTFIr9FHWjg?e=gffkgi" target="_self"&gt;here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 12:12:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1543072#M30410</guid>
      <dc:creator>Ashish_Mathur</dc:creator>
      <dc:date>2020-12-10T12:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: Dax for Excel Index Match</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1543987#M30465</link>
      <description>&lt;P&gt;Thank you Daniel&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 22:14:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1543987#M30465</guid>
      <dc:creator>satich989</dc:creator>
      <dc:date>2020-12-10T22:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: Dax for Excel Index Match</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1543988#M30466</link>
      <description>&lt;P&gt;Thank you Ashish. The solution has most of what I need.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 22:15:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1543988#M30466</guid>
      <dc:creator>satich989</dc:creator>
      <dc:date>2020-12-10T22:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: Dax for Excel Index Match</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1544013#M30467</link>
      <description>&lt;P&gt;You are welcome.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2020 23:06:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-Excel-Index-Match/m-p/1544013#M30467</guid>
      <dc:creator>Ashish_Mathur</dc:creator>
      <dc:date>2020-12-10T23:06:25Z</dc:date>
    </item>
  </channel>
</rss>

