<?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: How to create display column for multi-select choice? in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/How-to-create-display-column-for-multi-select-choice/m-p/2448626#M35454</link>
    <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please follow the below steps to get it, you can open &lt;STRONG&gt;the attachmen&lt;/STRONG&gt;t to check how it works...&lt;/P&gt;
&lt;P&gt;1. Select the table and right click "&lt;STRONG&gt;New measure&lt;/STRONG&gt;" just as below screenshot&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yingyinr_0-1649660932152.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/697743i394C14A089B58611/image-size/large?v=v2&amp;amp;px=999" role="button" title="yingyinr_0-1649660932152.png" alt="yingyinr_0-1649660932152.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;2. Write the below formula in the formula bar&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;FieldName_Display(Multi) = 
CONCATENATEX (
    FILTER ( 'Table', 'Table'[fieldname] IN ALLSELECTED ( 'Table'[fieldname] ) ),
    'Table'[fieldname_display],
    ","
)&lt;/LI-CODE&gt;
&lt;P&gt;3. Apply the above measure onto the table visual&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yingyinr_1-1649661046614.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/697744iAEAD8BAB13296A42/image-size/large?v=v2&amp;amp;px=999" role="button" title="yingyinr_1-1649661046614.png" alt="yingyinr_1-1649661046614.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
    <pubDate>Mon, 11 Apr 2022 07:12:34 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-04-11T07:12:34Z</dc:date>
    <item>
      <title>How to create display column for multi-select choice?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-create-display-column-for-multi-select-choice/m-p/2430960#M35274</link>
      <description>&lt;P&gt;Using CDS as data source to create Power BI graphs. In the data tables, there is a display column that can show the value of the choice ID selected for single-select choice columns in each row. It is created from the data source. For example,&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;fieldname&lt;/TD&gt;&lt;TD&gt;fieldname_display&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;D&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;E&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;How can it be created for multi-select choices?&lt;/P&gt;&lt;P&gt;Such as,&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;fieldname(multi)&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF6600"&gt;fieldname(multi)_display&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;0,1&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF6600"&gt;A,B&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1,2,3&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF6600"&gt;B,C,D&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3,4&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF6600"&gt;D,E&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF6600"&gt;A,B&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2,3&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF6600"&gt;C,D&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It will only display the left column, to show the choice IDs selected, with a comma to separate the values. How can it be done but to show the values of the choice IDs?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 04:17:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-create-display-column-for-multi-select-choice/m-p/2430960#M35274</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-04-01T04:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to create display column for multi-select choice?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-create-display-column-for-multi-select-choice/m-p/2434588#M35309</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;You can create a &lt;STRONG&gt;measure&lt;/STRONG&gt; as below to get it, please find the details in &lt;EM&gt;&lt;STRONG&gt;the attachment&lt;/STRONG&gt;&lt;/EM&gt;.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;FieldName_Display(Multi) = 
CONCATENATEX (
    FILTER ( 'Table', 'Table'[fieldname] IN ALLSELECTED ( 'Table'[fieldname] ) ),
    'Table'[fieldname_display],
    ","
)&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yingyinr_0-1649054034321.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/694085i86C830E7B4829328/image-size/large?v=v2&amp;amp;px=999" role="button" title="yingyinr_0-1649054034321.png" alt="yingyinr_0-1649054034321.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Mon, 04 Apr 2022 06:34:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-create-display-column-for-multi-select-choice/m-p/2434588#M35309</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-04-04T06:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to create display column for multi-select choice?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-create-display-column-for-multi-select-choice/m-p/2448486#M35448</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&amp;nbsp;, thanks for this solution. However my data table does not have the _display column to begin with, do you know how to create this multi choice _display column in the table?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Apr 2022 06:19:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-create-display-column-for-multi-select-choice/m-p/2448486#M35448</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-04-11T06:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to create display column for multi-select choice?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-create-display-column-for-multi-select-choice/m-p/2448626#M35454</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please follow the below steps to get it, you can open &lt;STRONG&gt;the attachmen&lt;/STRONG&gt;t to check how it works...&lt;/P&gt;
&lt;P&gt;1. Select the table and right click "&lt;STRONG&gt;New measure&lt;/STRONG&gt;" just as below screenshot&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yingyinr_0-1649660932152.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/697743i394C14A089B58611/image-size/large?v=v2&amp;amp;px=999" role="button" title="yingyinr_0-1649660932152.png" alt="yingyinr_0-1649660932152.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;2. Write the below formula in the formula bar&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;FieldName_Display(Multi) = 
CONCATENATEX (
    FILTER ( 'Table', 'Table'[fieldname] IN ALLSELECTED ( 'Table'[fieldname] ) ),
    'Table'[fieldname_display],
    ","
)&lt;/LI-CODE&gt;
&lt;P&gt;3. Apply the above measure onto the table visual&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yingyinr_1-1649661046614.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/697744iAEAD8BAB13296A42/image-size/large?v=v2&amp;amp;px=999" role="button" title="yingyinr_1-1649661046614.png" alt="yingyinr_1-1649661046614.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Mon, 11 Apr 2022 07:12:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-create-display-column-for-multi-select-choice/m-p/2448626#M35454</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-04-11T07:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to create display column for multi-select choice?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-create-display-column-for-multi-select-choice/m-p/2456413#M35538</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&amp;nbsp;when we import the data columns from CDS to Power BI, it does not import the _display column. How do we create it?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Apr 2022 05:17:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-create-display-column-for-multi-select-choice/m-p/2456413#M35538</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-04-14T05:17:01Z</dc:date>
    </item>
  </channel>
</rss>

