<?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: Migrating from Tableau to Power BI using Dax in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/790122#M4489</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This is what i have done as of now.&lt;/P&gt;&lt;P&gt;When we select a quarter from the slicer, the table visual displays if that date falls in that quarter.&lt;/P&gt;&lt;P&gt;Do you want to have an additional True and False slicer?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Thu, 12 Sep 2019 04:43:26 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-09-12T04:43:26Z</dc:date>
    <item>
      <title>Migrating from Tableau to Power BI using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/788573#M4421</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I am learning DAX and in the process of migrating a dashboard&amp;nbsp;from Tableau to Power BI&lt;/P&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;Migrating a dashboard which shows the Active Billing accounts&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;This is what I have done in Tableau&lt;/P&gt;&lt;P&gt;I have a parameter in Tableau which shows the date and quarters. The user selects a quarter and the corresponding date gets checked with date values in a column The parameter is called Audit Period. So here is the logic that I am applying in Tableau.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;// Flag bill records that contain Bill Period To &amp;gt;= end of audit period (parameter value in Tableau which will be the value that i will using to filter)&lt;/P&gt;&lt;P&gt;IF [Bill Period To] &amp;gt;= &lt;FONT color="#FF0000"&gt;[Audit Period]&lt;/FONT&gt; THEN&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; TRUE&lt;BR /&gt;ELSE&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;FALSE&lt;BR /&gt;END&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The logic checks selected value from the parameter dropdown as [Audit Period] and if that value is greater than or equal to the values in the [Bill Period To] against each Billing Account return a True if not False&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My Slicer in Power Bi which works as the value input or filter.&amp;nbsp;I have created a corresponding date column for each quarter on the custom table which I am&amp;nbsp;using in this slicer.&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;My Date column in the accounts table that iam trying to apply the logic to&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;The aim is to populate a custom column with a True or False and then use that in a visual.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be appreciated.&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, 10 Sep 2019 17:17:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/788573#M4421</guid>
      <dc:creator>Basmall_B</dc:creator>
      <dc:date>2019-09-10T17:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: Migrating from Tableau to Power BI using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/788954#M4433</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Is it a one to one mapping between Quarter and its corresponding date?&lt;/P&gt;&lt;P&gt;So, if I select 'Qtr 1 2018', will it return one corresponding date or all the dates in that quarter?&lt;/P&gt;&lt;P&gt;If the selection returns multiple dates, which date do you want to compare, max or min ?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Sep 2019 06:01:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/788954#M4433</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-11T06:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: Migrating from Tableau to Power BI using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/789469#M4462</link>
      <description>&lt;P&gt;Hi Vaibhav&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for responding to my question. The idea is to get all the rows that match that quarter only for the Active accounts. If it falls with in that quarter it should return a True Else False.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Sep 2019 13:18:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/789469#M4462</guid>
      <dc:creator>Basmall_B</dc:creator>
      <dc:date>2019-09-11T13:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: Migrating from Tableau to Power BI using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/789508#M4464</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="162938" data-lia-user-login="Basmall_B" class="lia-mention lia-mention-user"&gt;Basmall_B&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;So you want the values in the table to change every time the slicer value changes, which to my knowledge is difficult to achieve as calculated columns will not respond to slicer change.&lt;/P&gt;&lt;P&gt;Having said that, we can create a measure which returns True or False and then use that in a visual.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Sep 2019 13:49:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/789508#M4464</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-11T13:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: Migrating from Tableau to Power BI using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/789527#M4466</link>
      <description>&lt;P&gt;Thanks Vaibhav,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That is what I gathered&amp;nbsp; reading some of the posts,&amp;nbsp; after responding to your reply. May be dynamically&amp;nbsp;changing the values in column may not be possible with changes in a slicer. But with my beginner level of knowledge I thought we may have a solution that I didn't know.&lt;/P&gt;&lt;P&gt;Taking your suggestion I can work with a measure as well which I&amp;nbsp; can; then use in a visual. How will I go about achieving this ?&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, 11 Sep 2019 14:10:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/789527#M4466</guid>
      <dc:creator>Basmall_B</dc:creator>
      <dc:date>2019-09-11T14:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: Migrating from Tableau to Power BI using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/790122#M4489</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This is what i have done as of now.&lt;/P&gt;&lt;P&gt;When we select a quarter from the slicer, the table visual displays if that date falls in that quarter.&lt;/P&gt;&lt;P&gt;Do you want to have an additional True and False slicer?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2019 04:43:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/790122#M4489</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-12T04:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: Migrating from Tableau to Power BI using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/790518#M4499</link>
      <description>&lt;P&gt;Hi Vaibhav,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You are on the dot. This is what I was after. I can then use the count rows returned in my other visuals as well. I wont need any additional slicers with True and False. This will serve my purspose. What are the steps that I should follow to achieve the same behaviour.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2019 10:59:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/790518#M4499</guid>
      <dc:creator>Basmall_B</dc:creator>
      <dc:date>2019-09-12T10:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: Migrating from Tableau to Power BI using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/790528#M4500</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Create Below measures:&lt;/P&gt;&lt;PRE&gt;MinDate = CALCULATE ( MIN('Calendar'[date]), ALLSELECTED('Calendar') )

MaxDate = CALCULATE ( MAX('Calendar'[date]), ALLSELECTED('Calendar') )

Quarter Flag = 
VAR v_Date = CALCULATE( MAX( Transaction_Data[transaction_date] ) )
RETURN
IF( ( [MinDate] &amp;lt;= v_Date &amp;amp;&amp;amp; [MaxDate] &amp;gt;= v_Date ), "True", "False" )&lt;/PRE&gt;&lt;P&gt;MinDate and MaxDate calculate the minimum and maximum date for the selected quarter.&lt;/P&gt;&lt;P&gt;Quarter flag checks if the date in the fact table falls in the selected range.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Please accept this as a solution if it satisfies the requirement.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2019 11:12:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/790528#M4500</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-12T11:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: Migrating from Tableau to Power BI using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/794559#M4649</link>
      <description>&lt;P&gt;Hi Vibhav,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry it took me a while to respond. I was pulled into couple of other issues.&lt;/P&gt;&lt;P&gt;I was wondering if you could share the PBIX file so that I can recreate the measures and compare it to what you have done. I am almost close to getting this work.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;B&lt;/P&gt;</description>
      <pubDate>Tue, 17 Sep 2019 13:49:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/794559#M4649</guid>
      <dc:creator>Basmall_B</dc:creator>
      <dc:date>2019-09-17T13:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: Migrating from Tableau to Power BI using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/795212#M4671</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Here's a link to the pbix:&lt;/P&gt;&lt;P&gt;&lt;A href="https://1drv.ms/u/s!AikPceQOhqFEhBNHgf4AHSZOm45J?e=4t7b2V" target="_self"&gt;https://1drv.ms/u/s!AikPceQOhqFEhBNHgf4AHSZOm45J?e=4t7b2V&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2019 04:09:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/795212#M4671</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-18T04:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: Migrating from Tableau to Power BI using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/795789#M4675</link>
      <description>&lt;P&gt;Hi Vibhav,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your idea worked and saved me a lot of time in researching.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your timely help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;B&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2019 13:15:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Migrating-from-Tableau-to-Power-BI-using-Dax/m-p/795789#M4675</guid>
      <dc:creator>Basmall_B</dc:creator>
      <dc:date>2019-09-18T13:15:05Z</dc:date>
    </item>
  </channel>
</rss>

