<?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: Measure to display name of employee based on selected employee ID in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-display-name-of-employee-based-on-selected-employee/m-p/4009307#M157659</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="673763" data-lia-user-login="JS00" class="lia-mention lia-mention-user"&gt;JS00&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am not sure wether you want single select or multiple selection i have tried which works for both single or multiple selection.&amp;nbsp;&lt;BR /&gt;Create this measure:&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;select name = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&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;ISFILTERED&lt;/SPAN&gt;&lt;SPAN&gt; ( emp_name[ID] ), &lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt; ), &lt;/SPAN&gt;&lt;SPAN&gt;ALLSELECTED&lt;/SPAN&gt;&lt;SPAN&gt; ( emp_name ) ) once you create this apply this to filter and name in table&amp;nbsp;&lt;BR /&gt;check below image:&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;img /&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!&lt;BR /&gt;Check for more interesting solution here:&amp;nbsp;&lt;A class="" href="http://www.youtube.com/@Howtosolveprobem" target="_blank" rel="noopener nofollow noreferrer"&gt;www.youtube.com/@Howtosolveprobem&lt;/A&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
    <pubDate>Tue, 25 Jun 2024 14:17:54 GMT</pubDate>
    <dc:creator>qqqqqwwwweeerrr</dc:creator>
    <dc:date>2024-06-25T14:17:54Z</dc:date>
    <item>
      <title>Measure to display name of employee based on selected employee ID</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-display-name-of-employee-based-on-selected-employee/m-p/4009045#M157657</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table (Sales) with Employee ID and their sales, and another table (Employee) with Employee's names/ID. (Employee).&amp;nbsp;&lt;/P&gt;&lt;P&gt;Employee table has a one to many relationship with the Sales table (linked through the ID column).&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to display the employee's name based on the employee ID selected, if none selected, I don't want to display anything.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried the measure of&amp;nbsp;&lt;SPAN class=""&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;('Employee'[Name], ''), but it isn't working.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you in advance.&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2024 12:06:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-display-name-of-employee-based-on-selected-employee/m-p/4009045#M157657</guid>
      <dc:creator>JS00</dc:creator>
      <dc:date>2024-06-25T12:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to display name of employee based on selected employee ID</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-display-name-of-employee-based-on-selected-employee/m-p/4009249#M157658</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="673763" data-lia-user-login="JS00" class="lia-mention lia-mention-user"&gt;JS00&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;you can use below DAX to create the measure :&amp;nbsp;&lt;BR /&gt;if you select any customer ID, it will give you the customer name or if nothing is selected then it will be blank.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2024 13:53:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-display-name-of-employee-based-on-selected-employee/m-p/4009249#M157658</guid>
      <dc:creator>AnkitaaMishra</dc:creator>
      <dc:date>2024-06-25T13:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to display name of employee based on selected employee ID</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-display-name-of-employee-based-on-selected-employee/m-p/4009307#M157659</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="673763" data-lia-user-login="JS00" class="lia-mention lia-mention-user"&gt;JS00&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am not sure wether you want single select or multiple selection i have tried which works for both single or multiple selection.&amp;nbsp;&lt;BR /&gt;Create this measure:&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;select name = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&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;ISFILTERED&lt;/SPAN&gt;&lt;SPAN&gt; ( emp_name[ID] ), &lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt; ), &lt;/SPAN&gt;&lt;SPAN&gt;ALLSELECTED&lt;/SPAN&gt;&lt;SPAN&gt; ( emp_name ) ) once you create this apply this to filter and name in table&amp;nbsp;&lt;BR /&gt;check below image:&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;img /&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!&lt;BR /&gt;Check for more interesting solution here:&amp;nbsp;&lt;A class="" href="http://www.youtube.com/@Howtosolveprobem" target="_blank" rel="noopener nofollow noreferrer"&gt;www.youtube.com/@Howtosolveprobem&lt;/A&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 25 Jun 2024 14:17:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-display-name-of-employee-based-on-selected-employee/m-p/4009307#M157659</guid>
      <dc:creator>qqqqqwwwweeerrr</dc:creator>
      <dc:date>2024-06-25T14:17:54Z</dc:date>
    </item>
  </channel>
</rss>

