<?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 New column in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-column/m-p/986938#M12162</link>
    <description>&lt;P&gt;Hello guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to create a column where a list of customer numbers is related to the customer name, but I can't add more than 3 argument for the function below. All the numbers below should give "John Lewis" as answer. Can anyone help me out? Cheers!&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 23 Mar 2020 12:34:46 GMT</pubDate>
    <dc:creator>RenataOGardner</dc:creator>
    <dc:date>2020-03-23T12:34:46Z</dc:date>
    <item>
      <title>New column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-column/m-p/986938#M12162</link>
      <description>&lt;P&gt;Hello guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to create a column where a list of customer numbers is related to the customer name, but I can't add more than 3 argument for the function below. All the numbers below should give "John Lewis" as answer. Can anyone help me out? Cheers!&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2020 12:34:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-column/m-p/986938#M12162</guid>
      <dc:creator>RenataOGardner</dc:creator>
      <dc:date>2020-03-23T12:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: New column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-column/m-p/986948#M12163</link>
      <description>&lt;P&gt;You could use nested IF statements, but don't. Use SWITCH instead but I can't exactly tell what you are trying to do.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2020 12:19:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-column/m-p/986948#M12163</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-03-23T12:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: New column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-column/m-p/986973#M12165</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I'm trying to do is: Create a column with the name of the Custormer and add all the locations that are under this customer. The locations are coded by number so each number I want to call for the name of the customer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2020 12:39:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-column/m-p/986973#M12165</guid>
      <dc:creator>RenataOGardner</dc:creator>
      <dc:date>2020-03-23T12:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: New column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-column/m-p/986980#M12167</link>
      <description>&lt;P&gt;So something like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Column =&lt;/P&gt;
&lt;P&gt;&amp;nbsp; SWITCH('Table'[Column],&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; "39062","John Lewis",&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; "39063","John Lewis",&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;lt;as many pairs as you want&amp;gt;&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>Mon, 23 Mar 2020 12:42:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-column/m-p/986980#M12167</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-03-23T12:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: New column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-column/m-p/986991#M12169</link>
      <description>&lt;P&gt;Hiya,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for helping me. Much appreciate it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, it doesn't like the SWITCH either.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2020 12:50:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-column/m-p/986991#M12169</guid>
      <dc:creator>RenataOGardner</dc:creator>
      <dc:date>2020-03-23T12:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: New column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-column/m-p/987079#M12170</link>
      <description>&lt;P&gt;The syntax is wrong.&amp;nbsp;&amp;nbsp; Replace that = with a ,&lt;/P&gt;
&lt;P&gt;And check that the data type of [no_] is text.&amp;nbsp; If it is of number type then you don't need the quotes round the hardcoded values&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2020 13:40:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-column/m-p/987079#M12170</guid>
      <dc:creator>HotChilli</dc:creator>
      <dc:date>2020-03-23T13:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: New column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-column/m-p/987159#M12175</link>
      <description>&lt;P&gt;Thank you so much!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2020 14:25:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-column/m-p/987159#M12175</guid>
      <dc:creator>RenataOGardner</dc:creator>
      <dc:date>2020-03-23T14:25:16Z</dc:date>
    </item>
  </channel>
</rss>

