<?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 same information in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-same-information/m-p/4009384#M157623</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="765718" data-lia-user-login="by_tiago" class="lia-mention lia-mention-user"&gt;by_tiago&lt;/a&gt; , if they are columns, a card will take the first value, unless there is a filter via another visual or slicer to give you the exact value. First card visual will not filter second one &lt;/P&gt;</description>
    <pubDate>Tue, 25 Jun 2024 15:10:01 GMT</pubDate>
    <dc:creator>amitchandak</dc:creator>
    <dc:date>2024-06-25T15:10:01Z</dc:date>
    <item>
      <title>Need same information</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-same-information/m-p/4009352#M157622</link>
      <description>&lt;P&gt;Hello everyone! I’m in need of some help. Currently, I’m trying to create a card using the new visual in Power BI, the “New Card”. However, I’m facing a problem: the information displayed on the card is different from what is in the table.&lt;/P&gt;&lt;P&gt;For example, in the table, it shows that the MH-01 process is associated with IT. However, in the card visual, ED appears. From what I could perceive, the visual is taking the first piece of information and adding it to the card. However, I need the information on the card to be exactly the same as in the table.&lt;/P&gt;&lt;P&gt;Below is a screenshot to better illustrate the situation. I appreciate any help in advance!&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2024 14:49:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-same-information/m-p/4009352#M157622</guid>
      <dc:creator>by_tiago</dc:creator>
      <dc:date>2024-06-25T14:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: Need same information</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-same-information/m-p/4009384#M157623</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="765718" data-lia-user-login="by_tiago" class="lia-mention lia-mention-user"&gt;by_tiago&lt;/a&gt; , if they are columns, a card will take the first value, unless there is a filter via another visual or slicer to give you the exact value. First card visual will not filter second one &lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2024 15:10:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-same-information/m-p/4009384#M157623</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2024-06-25T15:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: Need same information</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-same-information/m-p/4010527#M157818</link>
      <description>&lt;P&gt;&lt;FONT&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="765718" data-lia-user-login="by_tiago" class="lia-mention lia-mention-user"&gt;by_tiago&lt;/a&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp;Thank you very much for your prompt reply, please allow me to share some content here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As the&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp; says, the first card does not affect the second card.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;They show the first value of each card.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the "operador" column, the first value is "Ed" in alphabetical order.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Creating a slicer is a good way to do this. It dynamically displays the data you want to display.&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;
&lt;P&gt;If you just want to display the first data statically, you can choose to create a measure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure Operador = 
CALCULATE(
    SELECTEDVALUE('Table'[operador]), 
    FILTER(
        'Table', 
        'Table'[processos] = "MH-01"
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the result.&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;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Nono Chen&lt;/P&gt;
&lt;P&gt;If this &lt;STRONG&gt;&lt;EM&gt;post&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;helps, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2024 06:31:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-same-information/m-p/4010527#M157818</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-06-26T06:31:48Z</dc:date>
    </item>
  </channel>
</rss>

