<?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 How to get corresponding column value ? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-corresponding-column-value/m-p/2270791#M55275</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Suppose i have one table with date key and week start date and week end date and fiscal week number columns .How do i get the fiscal week number for today ?&lt;/P&gt;&lt;P&gt;Can someone help me with the dax please&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 07 Jan 2022 03:55:55 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-01-07T03:55:55Z</dc:date>
    <item>
      <title>How to get corresponding column value ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-corresponding-column-value/m-p/2270791#M55275</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Suppose i have one table with date key and week start date and week end date and fiscal week number columns .How do i get the fiscal week number for today ?&lt;/P&gt;&lt;P&gt;Can someone help me with the dax please&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jan 2022 03:55:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-corresponding-column-value/m-p/2270791#M55275</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-07T03:55:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to get corresponding column value ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-corresponding-column-value/m-p/2270801#M55276</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; ,&lt;/P&gt;
&lt;P&gt;Maxx(filter('Date','Date'[week start date] &amp;lt;= Today() &amp;amp;&amp;amp; 'Date'[week end date] &amp;gt;= Today() ), 'Date'[week number ])&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jan 2022 04:07:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-corresponding-column-value/m-p/2270801#M55276</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-01-07T04:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to get corresponding column value ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-corresponding-column-value/m-p/2270877#M55280</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If your table has all dates with our any missed date, try this:&lt;/P&gt;&lt;P&gt;Measure =&amp;nbsp;&lt;BR /&gt;Var _D = Today ()&lt;BR /&gt;return&lt;BR /&gt;calculate(max(table[&lt;SPAN&gt;fiscal week number]),filter(all(table),table[date]=_D))&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Otherwise, use this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Measure =&amp;nbsp;&lt;BR /&gt;Var _D = Today ()&lt;BR /&gt;return&lt;BR /&gt;calculate(max(table[&lt;SPAN&gt;fiscal week number]),filter(all(table),table[week start date] &amp;lt;=_D&amp;amp;&amp;amp;table[week end date] &amp;gt;=_D))&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;SPAN&gt;helps&lt;/SPAN&gt;&lt;/STRONG&gt;, please consider&amp;nbsp;&lt;SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;accepting&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;it as the solution&lt;/SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/EM&gt;to help the other members find it more quickly.&lt;BR /&gt;&lt;STRONG&gt;&lt;SPAN&gt;Appreciate your Kudos!!&lt;BR /&gt;&lt;STRONG&gt;LinkedIn:&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&lt;A href="https://www.linkedin.com/in/vahid-dm/" target="_blank"&gt;www.linkedin.com/in/vahid-dm/&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jan 2022 05:49:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-corresponding-column-value/m-p/2270877#M55280</guid>
      <dc:creator>VahidDM</dc:creator>
      <dc:date>2022-01-07T05:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to get corresponding column value ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-corresponding-column-value/m-p/2271326#M55305</link>
      <description>&lt;P&gt;Thank you for your help&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jan 2022 10:24:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-corresponding-column-value/m-p/2271326#M55305</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-07T10:24:53Z</dc:date>
    </item>
  </channel>
</rss>

