<?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: Measure and Calculation column not working properly in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-and-Calculation-column-not-working-properly/m-p/1258858#M20867</link>
    <description>&lt;P&gt;I removed the measure in the column and still there is issues:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;as you can see the slicer1 is between 01/01/1989 and&amp;nbsp;7/26/1990. In&amp;nbsp;TimeFrameDateRangeCol1&amp;nbsp; i want 1 for exists and blank for dont exists.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DateFilterRange = IF(MAX(vw_patientListNew[StatusDate]) in UNION(VALUES(DateRange1[Date]),VALUES(DateRange2[Date]),VALUES(DateRange3[Date])),1)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;TimeFrameDateRangeCol1 = 
IF(MAX(vw_patientListNew[StatusDate]) in VALUES(DateRange1[Date]),1)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 29 Jul 2020 10:07:42 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-07-29T10:07:42Z</dc:date>
    <item>
      <title>Measure and Calculation column not working properly</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-and-Calculation-column-not-working-properly/m-p/1257782#M20831</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I have two calculated columns(TimeFrameDateRangeCol1) one is a measure (TimeFrameDateRange1 ) other is a calculation&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;TimeFrameDateRange1 = 
IF( NOT( ISBLANK(vw_patientListNew[MinselectedDateRange1]) &amp;amp;&amp;amp; ISBLANK(vw_patientListNew[MaxselectedDateRange1])),
vw_patientListNew[MinselectedDateRange1]  &amp;amp;"-"&amp;amp; vw_patientListNew[MaxselectedDateRange1],Blank())
&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;TimeFrameDateRangeCol1 = 

IF(isblank([TimeFrameDateRange1]),"blank","Not")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;as you can see&amp;nbsp;TimeFrameDateRangeCol1 condition is failing. Can you please let me know i i am doing wrong&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 03:27:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-and-Calculation-column-not-working-properly/m-p/1257782#M20831</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-29T03:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: Measure and Calculation column not working properly</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-and-Calculation-column-not-working-properly/m-p/1257819#M20833</link>
      <description>You are using measure in a calculated column, which triggers context transition and then each row of that table filters the measure, so it looks like the measure is never evaluated to be blank. Don't use a measure in a calculated column unless you have working knowledge of context transition.&lt;BR /&gt;&lt;BR /&gt;Read this article: &lt;A href="https://www.sqlbi.com/articles/understanding-context-transition/" target="_blank"&gt;https://www.sqlbi.com/articles/understanding-context-transition/&lt;/A&gt;</description>
      <pubDate>Wed, 29 Jul 2020 03:59:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-and-Calculation-column-not-working-properly/m-p/1257819#M20833</guid>
      <dc:creator>AntrikshSharma</dc:creator>
      <dc:date>2020-07-29T03:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: Measure and Calculation column not working properly</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-and-Calculation-column-not-working-properly/m-p/1257897#M20842</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , seem like you are trying to pass the parameters to a column, that is not possible. You can have a measure equivalent of that column by pushing row context&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;refer&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/Decoding-Direct-Query-in-Power-BI-Part-2-Date-Difference-Across/ba-p/934397#M451" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/Decoding-Direct-Query-in-Power-BI-Part-2-Date-Difference-Across/ba-p/934397#M451&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 05:05:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-and-Calculation-column-not-working-properly/m-p/1257897#M20842</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2020-07-29T05:05:07Z</dc:date>
    </item>
    <item>
      <title>Re: Measure and Calculation column not working properly</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-and-Calculation-column-not-working-properly/m-p/1258858#M20867</link>
      <description>&lt;P&gt;I removed the measure in the column and still there is issues:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;as you can see the slicer1 is between 01/01/1989 and&amp;nbsp;7/26/1990. In&amp;nbsp;TimeFrameDateRangeCol1&amp;nbsp; i want 1 for exists and blank for dont exists.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DateFilterRange = IF(MAX(vw_patientListNew[StatusDate]) in UNION(VALUES(DateRange1[Date]),VALUES(DateRange2[Date]),VALUES(DateRange3[Date])),1)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;TimeFrameDateRangeCol1 = 
IF(MAX(vw_patientListNew[StatusDate]) in VALUES(DateRange1[Date]),1)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 10:07:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-and-Calculation-column-not-working-properly/m-p/1258858#M20867</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-29T10:07:42Z</dc:date>
    </item>
  </channel>
</rss>

