<?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: Can &amp;quot;Measure&amp;quot; create a new field? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-quot-Measure-quot-create-a-new-field/m-p/1785921#M37535</link>
    <description>&lt;P&gt;Addition to my last reply,&lt;/P&gt;&lt;P&gt;try the below measure, and pull the measure and the Grouping column into the Table Visualization.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Test Measure =&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;EM&gt;IF (&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;OR (&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;SELECTEDVALUE ( Sheet1[Grouping] ) = "AAA",&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;SELECTEDVALUE ( Sheet1[Grouping] ) = "BBB"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;),&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;"High Potential",&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;sum ( Sheet1[Value])&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="”calibri" color="”#0000FF”"&gt;&lt;EM&gt;&lt;STRONG&gt;Hi, My name is Jihwan Kim. &lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="”calibri" color="”#0000FF”"&gt;&lt;EM&gt;&lt;STRONG&gt;If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.&lt;BR /&gt;&lt;BR /&gt;Linkedin: &lt;A href="https://www.linkedin.com/in/jihwankim1975/" target="_blank" rel="noopener"&gt;https://www.linkedin.com/in/jihwankim1975/&lt;/A&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 15 Apr 2021 04:39:34 GMT</pubDate>
    <dc:creator>Jihwan_Kim</dc:creator>
    <dc:date>2021-04-15T04:39:34Z</dc:date>
    <item>
      <title>Can "Measure" create a new field?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-quot-Measure-quot-create-a-new-field/m-p/1785766#M37529</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am new in PBI and right now, I have a report which linked to the DataSet but I am not allowed to create new column. I try below formula by creating new Measure but not success.&lt;/P&gt;&lt;P&gt;The data is as follow, I have one column call Grouping which have five possible recrods which are AAA, BBB, CCC, DDD and EEE. How I would like to create a table and sum the potential value but before that I want to group AAA &amp;amp; BBB to show it as "High Potential".&lt;/P&gt;&lt;P&gt;I try something like below but not success. May I know how to write?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If(and([Grouping] = "AAA", [Grouping] = "BBB"), "High Potential", [Grouping])&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 02:25:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-quot-Measure-quot-create-a-new-field/m-p/1785766#M37529</guid>
      <dc:creator>KH_Mike</dc:creator>
      <dc:date>2021-04-15T02:25:41Z</dc:date>
    </item>
    <item>
      <title>Re: Can "Measure" create a new field?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-quot-Measure-quot-create-a-new-field/m-p/1785812#M37530</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="280869" data-lia-user-login="KH_Mike" class="lia-mention lia-mention-user"&gt;KH_Mike&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please correct me if I wrongly understood your question.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I don't know know your model well, but I am not sure if [Grouping] could have a two-value-at-the-same-time.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please try to replace it with OR function.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If(OR([Grouping] = "AAA", [Grouping] = "BBB"), "High Potential", [Grouping])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="”calibri" color="”#0000FF”"&gt;&lt;EM&gt;&lt;STRONG&gt;Hi, My name is Jihwan Kim. &lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="”calibri" color="”#0000FF”"&gt;&lt;EM&gt;&lt;STRONG&gt;If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.&lt;BR /&gt;&lt;BR /&gt;Linkedin: &lt;A href="https://www.linkedin.com/in/jihwankim1975/" target="_blank"&gt;https://www.linkedin.com/in/jihwankim1975/&lt;/A&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 02:53:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-quot-Measure-quot-create-a-new-field/m-p/1785812#M37530</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2021-04-15T02:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: Can "Measure" create a new field?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-quot-Measure-quot-create-a-new-field/m-p/1785865#M37531</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your support but I still can't acheive what I want. Below image is for your reference. Please note that in the real data, I am not allowed to create new column. That mean I can only create new "Measure". Thank you.&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>Thu, 15 Apr 2021 03:21:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-quot-Measure-quot-create-a-new-field/m-p/1785865#M37531</guid>
      <dc:creator>KH_Mike</dc:creator>
      <dc:date>2021-04-15T03:21:33Z</dc:date>
    </item>
    <item>
      <title>Re: Can "Measure" create a new field?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-quot-Measure-quot-create-a-new-field/m-p/1785883#M37532</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="280869" data-lia-user-login="KH_Mike" class="lia-mention lia-mention-user"&gt;KH_Mike&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please try the below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Test Measure =&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;EM&gt;IF (&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;OR (&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;SELECTEDVALUE ( Sheet1[Grouping] ) = "AAA",&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;SELECTEDVALUE ( Sheet1[Grouping] ) = "BBB"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;),&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;"High Potential",&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;SELECTEDVALUE ( Sheet1[Grouping] )&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="”calibri" color="”#0000FF”"&gt;&lt;EM&gt;&lt;STRONG&gt;Hi, My name is Jihwan Kim. &lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="”calibri" color="”#0000FF”"&gt;&lt;EM&gt;&lt;STRONG&gt;If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.&lt;BR /&gt;&lt;BR /&gt;Linkedin: &lt;A href="https://www.linkedin.com/in/jihwankim1975/" target="_blank"&gt;https://www.linkedin.com/in/jihwankim1975/&lt;/A&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 03:41:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-quot-Measure-quot-create-a-new-field/m-p/1785883#M37532</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2021-04-15T03:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: Can "Measure" create a new field?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-quot-Measure-quot-create-a-new-field/m-p/1785899#M37533</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Still not workable. This will only show if I select the [Grouping].&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>Thu, 15 Apr 2021 04:05:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-quot-Measure-quot-create-a-new-field/m-p/1785899#M37533</guid>
      <dc:creator>KH_Mike</dc:creator>
      <dc:date>2021-04-15T04:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: Can "Measure" create a new field?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-quot-Measure-quot-create-a-new-field/m-p/1785919#M37534</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am confused.&lt;/P&gt;&lt;P&gt;I think I missed something from your explanation about what you want to achieve.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do not understand why you are pulling the measure and value column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you try to pull the Grouping Column and the measure into the Table Visualization?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or, share your pbix file's link please, then I can try to look into it to come up with a more accurate solution.&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 04:28:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-quot-Measure-quot-create-a-new-field/m-p/1785919#M37534</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2021-04-15T04:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: Can "Measure" create a new field?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-quot-Measure-quot-create-a-new-field/m-p/1785921#M37535</link>
      <description>&lt;P&gt;Addition to my last reply,&lt;/P&gt;&lt;P&gt;try the below measure, and pull the measure and the Grouping column into the Table Visualization.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Test Measure =&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;EM&gt;IF (&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;OR (&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;SELECTEDVALUE ( Sheet1[Grouping] ) = "AAA",&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;SELECTEDVALUE ( Sheet1[Grouping] ) = "BBB"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;),&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;"High Potential",&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;sum ( Sheet1[Value])&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="”calibri" color="”#0000FF”"&gt;&lt;EM&gt;&lt;STRONG&gt;Hi, My name is Jihwan Kim. &lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="”calibri" color="”#0000FF”"&gt;&lt;EM&gt;&lt;STRONG&gt;If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.&lt;BR /&gt;&lt;BR /&gt;Linkedin: &lt;A href="https://www.linkedin.com/in/jihwankim1975/" target="_blank" rel="noopener"&gt;https://www.linkedin.com/in/jihwankim1975/&lt;/A&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 04:39:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-quot-Measure-quot-create-a-new-field/m-p/1785921#M37535</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2021-04-15T04:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: Can "Measure" create a new field?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-quot-Measure-quot-create-a-new-field/m-p/1786087#M37539</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Because IT side put the data to PBI Premiun. When we connect to that database, the "Data" tab is not available for us to create "Column". I can either request IT to add that field or use "Measure" to acheive it. Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 06:51:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-quot-Measure-quot-create-a-new-field/m-p/1786087#M37539</guid>
      <dc:creator>KH_Mike</dc:creator>
      <dc:date>2021-04-15T06:51:24Z</dc:date>
    </item>
  </channel>
</rss>

