<?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 can I get the Actuals Field to replace the budget field for that same month? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-get-the-Actuals-Field-to-replace-the-budget-field-for/m-p/3171203#M114310</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , Based on what I go &lt;/P&gt;
&lt;P&gt;if(isblank([Actual]), [Actual], [Budget])&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How to get a single continuous line for Actual and Target without any break: &lt;A href="https://youtu.be/41yhZz2pNTI" target="_blank"&gt;https://youtu.be/41yhZz2pNTI&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 04 Apr 2023 09:04:45 GMT</pubDate>
    <dc:creator>amitchandak</dc:creator>
    <dc:date>2023-04-04T09:04:45Z</dc:date>
    <item>
      <title>How can I get the Actuals Field to replace the budget field for that same month?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-get-the-Actuals-Field-to-replace-the-budget-field-for/m-p/3170387#M114251</link>
      <description>&lt;P&gt;For example, In this photo I have Jan and Feb actuals and then all the budget numbers for the rest of the months of the year. Say it is April currently, I would then want only the Actual April field column to show and remove the April Budget field so on and so on.&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>Mon, 03 Apr 2023 22:25:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-get-the-Actuals-Field-to-replace-the-budget-field-for/m-p/3170387#M114251</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-03T22:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: How can I get the Actuals Field to replace the budget field for that same month?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-get-the-Actuals-Field-to-replace-the-budget-field-for/m-p/3171203#M114310</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , Based on what I go &lt;/P&gt;
&lt;P&gt;if(isblank([Actual]), [Actual], [Budget])&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How to get a single continuous line for Actual and Target without any break: &lt;A href="https://youtu.be/41yhZz2pNTI" target="_blank"&gt;https://youtu.be/41yhZz2pNTI&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 09:04:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-get-the-Actuals-Field-to-replace-the-budget-field-for/m-p/3171203#M114310</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2023-04-04T09:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: How can I get the Actuals Field to replace the budget field for that same month?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-get-the-Actuals-Field-to-replace-the-budget-field-for/m-p/3182354#M115082</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the reply. However; the actual and budget columns are in seperate tables. They are connected on account number but I can't build this measure because of that.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 17:15:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-get-the-Actuals-Field-to-replace-the-budget-field-for/m-p/3182354#M115082</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-11T17:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: How can I get the Actuals Field to replace the budget field for that same month?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-get-the-Actuals-Field-to-replace-the-budget-field-for/m-p/3182357#M115083</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , you can; to get correct the total have a measure like &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sumx(values(Account[Account]), calculate(if(isblank([Actual]), [Actual], [Budget])) )&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 17:17:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-get-the-Actuals-Field-to-replace-the-budget-field-for/m-p/3182357#M115083</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2023-04-11T17:17:21Z</dc:date>
    </item>
    <item>
      <title>Re: How can I get the Actuals Field to replace the budget field for that same month?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-get-the-Actuals-Field-to-replace-the-budget-field-for/m-p/3182378#M115084</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;These are my two tables being connected on GL/DEPT when I tried to write your DAX measure it did not work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 17:23:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-get-the-Actuals-Field-to-replace-the-budget-field-for/m-p/3182378#M115084</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-11T17:23:20Z</dc:date>
    </item>
    <item>
      <title>Re: How can I get the Actuals Field to replace the budget field for that same month?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-get-the-Actuals-Field-to-replace-the-budget-field-for/m-p/3182392#M115085</link>
      <description>&lt;P&gt;Also, my Budget and Actual Amount fields are not measures they are actual fields inside my tables.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 17:29:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-get-the-Actuals-Field-to-replace-the-budget-field-for/m-p/3182392#M115085</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-11T17:29:49Z</dc:date>
    </item>
  </channel>
</rss>

