<?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: Converting monthly value into daily DAX in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Converting-monthly-value-into-daily-DAX/m-p/3127088#M111106</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;This is a relationship cardinality issue.&lt;BR /&gt;You need to create the relationship between 'Date' and 'Planned' at month level not at day level. You can create a YearMonth column like FORMAT ( Planned[Date], "YYYYMM" ) in the Planned table and FORMAT ( 'Date'[Date], "YYYYMM" ) in the 'Date" table and connect both columns together Many-Many single direction.&lt;/P&gt;</description>
    <pubDate>Mon, 13 Mar 2023 07:30:16 GMT</pubDate>
    <dc:creator>tamerj1</dc:creator>
    <dc:date>2023-03-13T07:30:16Z</dc:date>
    <item>
      <title>Converting monthly value into daily DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Converting-monthly-value-into-daily-DAX/m-p/3125985#M111032</link>
      <description>&lt;P&gt;hi everyone!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please help with the following,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to convert montly target value for sales into daily average with respect to number of days in a given month.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is my data model&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; tables are connected through calendar table,&amp;nbsp;&lt;BR /&gt;&lt;STRONG&gt;Actual&lt;/STRONG&gt; table has data on daily level, but &lt;STRONG&gt;Plan&lt;/STRONG&gt; table has data on monthly level&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; and I need to see it in the following format&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;important thing to concider is days in each month&lt;/P&gt;</description>
      <pubDate>Sun, 12 Mar 2023 08:50:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Converting-monthly-value-into-daily-DAX/m-p/3125985#M111032</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-03-12T08:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: Converting monthly value into daily DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Converting-monthly-value-into-daily-DAX/m-p/3125997#M111033</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;why did you divide the march planned amount over 46.5 days? 331,962/46.5 = 7,139?&lt;/P&gt;</description>
      <pubDate>Sun, 12 Mar 2023 09:17:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Converting-monthly-value-into-daily-DAX/m-p/3125997#M111033</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-03-12T09:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: Converting monthly value into daily DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Converting-monthly-value-into-daily-DAX/m-p/3126979#M111090</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;sorry, my bad I captured more days for march,&lt;BR /&gt;daily figure should be &lt;STRONG&gt;10 708&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2023 06:27:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Converting-monthly-value-into-daily-DAX/m-p/3126979#M111090</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-03-13T06:27:55Z</dc:date>
    </item>
    <item>
      <title>Re: Converting monthly value into daily DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Converting-monthly-value-into-daily-DAX/m-p/3127010#M111092</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Planned Sales Daily =
DIVIDE (
    [Planned Sales],
    COUNTROWS (
        CALCULATETABLE (
            VALUES ( 'Calendar'[Date] ),
            REMOVEFILTERS (),
            VALUES ( 'Calendar'[Year] ),
            VALUES ( 'Calendar'[Month] )
        )
    )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 13 Mar 2023 06:44:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Converting-monthly-value-into-daily-DAX/m-p/3127010#M111092</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-03-13T06:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: Converting monthly value into daily DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Converting-monthly-value-into-daily-DAX/m-p/3127023#M111095</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;still returns only one value&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, 13 Mar 2023 06:51:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Converting-monthly-value-into-daily-DAX/m-p/3127023#M111095</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-03-13T06:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: Converting monthly value into daily DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Converting-monthly-value-into-daily-DAX/m-p/3127088#M111106</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;This is a relationship cardinality issue.&lt;BR /&gt;You need to create the relationship between 'Date' and 'Planned' at month level not at day level. You can create a YearMonth column like FORMAT ( Planned[Date], "YYYYMM" ) in the Planned table and FORMAT ( 'Date'[Date], "YYYYMM" ) in the 'Date" table and connect both columns together Many-Many single direction.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2023 07:30:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Converting-monthly-value-into-daily-DAX/m-p/3127088#M111106</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-03-13T07:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: Converting monthly value into daily DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Converting-monthly-value-into-daily-DAX/m-p/3127144#M111110</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;you are a genius!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks, it works now, but how did you figured it out ?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2023 07:45:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Converting-monthly-value-into-daily-DAX/m-p/3127144#M111110</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-03-13T07:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: Converting monthly value into daily DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Converting-monthly-value-into-daily-DAX/m-p/3127179#M111114</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It was very clear&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2023 07:54:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Converting-monthly-value-into-daily-DAX/m-p/3127179#M111114</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-03-13T07:54:09Z</dc:date>
    </item>
  </channel>
</rss>

