<?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: Need help creating matrix visual with lookupvalue function in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Need-help-creating-matrix-visual-with-lookupvalue-function/m-p/3094610#M41400</link>
    <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;You can create a &lt;STRONG&gt;calculated column&lt;/STRONG&gt; as below and replace the field [parentkey] on the matrix. 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;New Parentkey = IF ( 'Table'[parentkey] = BLANK (), 'Table'[key], 'Table'[parentkey] )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yingyinr_0-1677131497658.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/876468i39A259C998BF1ADA/image-size/large?v=v2&amp;amp;px=999" role="button" title="yingyinr_0-1677131497658.png" alt="yingyinr_0-1677131497658.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
    <pubDate>Thu, 23 Feb 2023 05:52:39 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-02-23T05:52:39Z</dc:date>
    <item>
      <title>Need help creating matrix visual with lookupvalue function</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Need-help-creating-matrix-visual-with-lookupvalue-function/m-p/3089656#M41365</link>
      <description>&lt;P&gt;I have a table that has four columns: key, parentKey, TicketType, summary.&lt;BR /&gt;The columns are defined as:&lt;BR /&gt;key - unique value of each ticket(will have IDs for all types of tickets including epics, stories, tasks and bugs)&lt;/P&gt;&lt;P&gt;parentKey - will be the key of epic under which other ticket types are present(bug, story and task) *value will be blank for epics&lt;/P&gt;&lt;P&gt;TicketType - categorical column with four values: Epic, Story, Task, Bug&lt;/P&gt;&lt;P&gt;Summary - Short description of each ticket (will have summaries for all types of tickets including epics, stories, tasks and bugs)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to create a matrix visual where parentKey and key are selected in rows (such that keys of stories, tasks and bugs mapped to an epic is displayed under the key of the epic) as shown in the 1st figure below and correspondingly the summary of the epic/story/task/bug in the values field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The resultant table I have got is not showing the summary of the epic. Rather it is displaying the summary of one of the ticket types that is matched under it. How can I correct this visual to show summary of the epic correctly?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pic 1 - Resultant Matrix Visual&lt;/P&gt;&lt;P&gt;Pic 2 - Parameters selected for generating matrix&lt;/P&gt;&lt;P&gt;Pic 3 - Sample data&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Visual: Summary Issue" style="width: 522px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/875001i37730DE4AD3ECC87/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="Visual: Summary Issue" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Visual: Summary Issue&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Visual Parameters" style="width: 528px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/874999i62E0011D8D800A56/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.png" alt="Visual Parameters" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Visual Parameters&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Table" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/875000i85D34A4988E5B117/image-size/large?v=v2&amp;amp;px=999" role="button" title="3.png" alt="Table" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Table&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2023 07:28:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Need-help-creating-matrix-visual-with-lookupvalue-function/m-p/3089656#M41365</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-21T07:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: Need help creating matrix visual with lookupvalue function</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Need-help-creating-matrix-visual-with-lookupvalue-function/m-p/3094610#M41400</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;You can create a &lt;STRONG&gt;calculated column&lt;/STRONG&gt; as below and replace the field [parentkey] on the matrix. 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;New Parentkey = IF ( 'Table'[parentkey] = BLANK (), 'Table'[key], 'Table'[parentkey] )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yingyinr_0-1677131497658.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/876468i39A259C998BF1ADA/image-size/large?v=v2&amp;amp;px=999" role="button" title="yingyinr_0-1677131497658.png" alt="yingyinr_0-1677131497658.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2023 05:52:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Need-help-creating-matrix-visual-with-lookupvalue-function/m-p/3094610#M41400</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-23T05:52:39Z</dc:date>
    </item>
  </channel>
</rss>

