<?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: Not picking up all IF clauses in new column but does in Measure in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252445#M54280</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="91529" data-lia-user-login="Jack2of3" class="lia-mention lia-mention-user"&gt;Jack2of3&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Attainment =
SWITCH (
    TRUE (),
    MBIS_PROJ_MILESTONES_V[Project Milestone Attainment] &amp;lt; .7, "Needs Improvement",
    MBIS_PROJ_MILESTONES_V[Project Milestone Attainment] &amp;gt;= .7
        &amp;amp;&amp;amp; MBIS_PROJ_MILESTONES_V[Project Milestone Attainment] &amp;lt; .9, "Good",
    MBIS_PROJ_MILESTONES_V[Project Milestone Attainment] &amp;gt;= .9, "Excellent"
)
&lt;/LI-CODE&gt;</description>
    <pubDate>Wed, 22 Dec 2021 16:57:50 GMT</pubDate>
    <dc:creator>smpa01</dc:creator>
    <dc:date>2021-12-22T16:57:50Z</dc:date>
    <item>
      <title>Not picking up all IF clauses in new column but does in Measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252347#M54269</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I am having an issue with IF.&lt;/P&gt;&lt;P&gt;&lt;U&gt;I created a measure that works correctly:&lt;/U&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Attainment Standing = &lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Project Milestone Attainment]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;gt;= &lt;/SPAN&gt;&lt;SPAN&gt;.9&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Excellent"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Project Milestone Attainment]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;gt;= &lt;/SPAN&gt;&lt;SPAN&gt;.7&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;MBIS_PROJ_MILESTONES_V&lt;/SPAN&gt;&lt;SPAN&gt;[Project Milestone Attainment]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt; &lt;/SPAN&gt;&lt;SPAN&gt;.9&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Good"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Project Milestone Attainment]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt; &lt;/SPAN&gt;&lt;SPAN&gt;.7&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Needs Improvement"&lt;/SPAN&gt;&lt;SPAN&gt;)))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;U&gt;I created a coulmn that does not:&lt;/U&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Attainment = &lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Project Milestone Attainment]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;gt;= &lt;/SPAN&gt;&lt;SPAN&gt;.9&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Excellent"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Project Milestone Attainment]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;gt;= &lt;/SPAN&gt;&lt;SPAN&gt;.7&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;MBIS_PROJ_MILESTONES_V&lt;/SPAN&gt;&lt;SPAN&gt;[Project Milestone Attainment]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt; &lt;/SPAN&gt;&lt;SPAN&gt;.9&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Good"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Project Milestone Attainment]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt; &lt;/SPAN&gt;&lt;SPAN&gt;.7&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Needs Improvement"&lt;/SPAN&gt;&lt;SPAN&gt;)))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;It is not identifying "Good" in the column. Need for Legend or Details&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 22 Dec 2021 15:59:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252347#M54269</guid>
      <dc:creator>Jack2of3</dc:creator>
      <dc:date>2021-12-22T15:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: Not picking up all IF clauses in new column but does in Measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252381#M54273</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="91529" data-lia-user-login="Jack2of3" class="lia-mention lia-mention-user"&gt;Jack2of3&lt;/a&gt; , Try like &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Switch(True(),&lt;BR /&gt;[Project Milestone Attainment] &amp;gt;= .9, "Excellent", &lt;BR /&gt;[Project Milestone Attainment] &amp;gt;= .7 , "Good" ,&lt;BR /&gt;"Needs Improvement"&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Wed, 22 Dec 2021 16:19:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252381#M54273</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2021-12-22T16:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: Not picking up all IF clauses in new column but does in Measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252416#M54278</link>
      <description>&lt;H3&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp;&lt;/H3&gt;&lt;P&gt;Thank you for the response unfortunately it gave the same result as the IF for the COLUMN.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Dec 2021 16:30:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252416#M54278</guid>
      <dc:creator>Jack2of3</dc:creator>
      <dc:date>2021-12-22T16:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: Not picking up all IF clauses in new column but does in Measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252445#M54280</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="91529" data-lia-user-login="Jack2of3" class="lia-mention lia-mention-user"&gt;Jack2of3&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Attainment =
SWITCH (
    TRUE (),
    MBIS_PROJ_MILESTONES_V[Project Milestone Attainment] &amp;lt; .7, "Needs Improvement",
    MBIS_PROJ_MILESTONES_V[Project Milestone Attainment] &amp;gt;= .7
        &amp;amp;&amp;amp; MBIS_PROJ_MILESTONES_V[Project Milestone Attainment] &amp;lt; .9, "Good",
    MBIS_PROJ_MILESTONES_V[Project Milestone Attainment] &amp;gt;= .9, "Excellent"
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 22 Dec 2021 16:57:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252445#M54280</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2021-12-22T16:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: Not picking up all IF clauses in new column but does in Measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252481#M54281</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24978" data-lia-user-login="smpa01" class="lia-mention lia-mention-user"&gt;smpa01&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was hopeful&lt;span class="lia-unicode-emoji" title=":thinking_face:"&gt;🤔&lt;/span&gt;&lt;/P&gt;&lt;P&gt;All of the logic should work.&lt;/P&gt;&lt;P&gt;I expanded and sorted the decimal values just to ensure no rounding issues (picking at straws) and got this as the result:&lt;/P&gt;&lt;P&gt;Weird!&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Dec 2021 17:20:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252481#M54281</guid>
      <dc:creator>Jack2of3</dc:creator>
      <dc:date>2021-12-22T17:20:50Z</dc:date>
    </item>
    <item>
      <title>Re: Not picking up all IF clauses in new column but does in Measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252486#M54283</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="91529" data-lia-user-login="Jack2of3" class="lia-mention lia-mention-user"&gt;Jack2of3&lt;/a&gt;&amp;nbsp; is it a measure or calculate column ?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Dec 2021 17:24:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252486#M54283</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2021-12-22T17:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: Not picking up all IF clauses in new column but does in Measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252499#M54285</link>
      <description>&lt;P&gt;The Value I am checking is a measure, The reulting data is a column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need it to be a column to use in donuts, pies etc.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Dec 2021 17:32:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252499#M54285</guid>
      <dc:creator>Jack2of3</dc:creator>
      <dc:date>2021-12-22T17:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: Not picking up all IF clauses in new column but does in Measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252508#M54286</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="91529" data-lia-user-login="Jack2of3" class="lia-mention lia-mention-user"&gt;Jack2of3&lt;/a&gt;&amp;nbsp; can you provide a small sample pbix please?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Dec 2021 17:38:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252508#M54286</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2021-12-22T17:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: Not picking up all IF clauses in new column but does in Measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252536#M54290</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24978" data-lia-user-login="smpa01" class="lia-mention lia-mention-user"&gt;smpa01&lt;/a&gt;&amp;nbsp;Not sure how to do that&lt;/P&gt;</description>
      <pubDate>Wed, 22 Dec 2021 18:12:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252536#M54290</guid>
      <dc:creator>Jack2of3</dc:creator>
      <dc:date>2021-12-22T18:12:47Z</dc:date>
    </item>
    <item>
      <title>Re: Not picking up all IF clauses in new column but does in Measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252787#M54326</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="91529" data-lia-user-login="Jack2of3" class="lia-mention lia-mention-user"&gt;Jack2of3&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is&amp;nbsp;&lt;SPAN&gt;[Project Milestone Attainment] a measure? if yes, can you share a formula you used for it?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;and is it possible to share a sample of your data in a text format with the desired result?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&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;</description>
      <pubDate>Wed, 22 Dec 2021 23:44:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2252787#M54326</guid>
      <dc:creator>VahidDM</dc:creator>
      <dc:date>2021-12-22T23:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Not picking up all IF clauses in new column but does in Measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2253824#M54368</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="91529" data-lia-user-login="Jack2of3" class="lia-mention lia-mention-user"&gt;Jack2of3&lt;/a&gt;&amp;nbsp; I have looked into ot and it seems that you got mixed up between measure and calculated column.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;While&amp;nbsp;&lt;SPAN style="font-family: inherit;"&gt;Project Milestone Attainment is a measure, Attainment is used as a calculated column.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;Which is why it does not give you the expected result. I understand that you need that as a calculated column becuase you need to use that as a legend. In that case, simply creating calculate column based on a meaure would not give you what you need.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;One of the ways to do it is by building a table like tfollowing&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Table =
SUMMARIZECOLUMNS (
    MBIS_PROJ_MILESTONES_V[FISCAL_YR],
    MBIS_PROJ_MILESTONES_V[SLT_NAME],
    MBIS_PROJ_MILESTONES_V[Quarter],
    MBIS_PROJ_MILESTONES_V[ACTIVE_FLAG],
    "_attainment", [_Attainment],
    "Project Milestone Attainment", [Project Milestone Attainment]
)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Dec 2021 14:08:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2253824#M54368</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2021-12-23T14:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: Not picking up all IF clauses in new column but does in Measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2253943#M54379</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24978" data-lia-user-login="smpa01" class="lia-mention lia-mention-user"&gt;smpa01&lt;/a&gt;&amp;nbsp;Thanks for that. I realized last night while watching the Matrix movie (not easy to follow) that the calculated column was doing averages and then decided to create a dimensional table with the three Attainmnet values. I have not tried my solution as yet but the one you provided does work.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Dec 2021 15:43:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Not-picking-up-all-IF-clauses-in-new-column-but-does-in-Measure/m-p/2253943#M54379</guid>
      <dc:creator>Jack2of3</dc:creator>
      <dc:date>2021-12-23T15:43:28Z</dc:date>
    </item>
  </channel>
</rss>

