<?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 display values with latest date on map in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/display-values-with-latest-date-on-map/m-p/2661043#M37544</link>
    <description>&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;I have a map with alot of points that i need to display the values of pressure that correlate to the latest active month date.&lt;/P&gt;&lt;P&gt;This is how my data looks like&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="abdalla_0-1658820477627.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/754079i4AFBFD21CA943A01/image-size/medium?v=v2&amp;amp;px=400" role="button" title="abdalla_0-1658820477627.png" alt="abdalla_0-1658820477627.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;i havent made any measures or any columns or tables.&amp;nbsp;&lt;/P&gt;&lt;P&gt;My apologies for limited data but my data is very sensitive. My request is how i can add the latest info&amp;nbsp; in the same table without creating a separate table.&lt;/P&gt;&lt;P&gt;The data plots column is just a concatenation between the shut in pressure column and the active month column&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you would like to access the file&amp;nbsp;&lt;/P&gt;&lt;P&gt;feel free to follow my link and download the file&amp;nbsp;&lt;/P&gt;&lt;P&gt;The file's name is experimentation&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/file/d/1fvClF3UtCeX1W71srlhfSAKcqXqgOHNe/view?usp=sharing" target="_blank" rel="noopener"&gt;https://drive.google.com/file/d/1fvClF3UtCeX1W71srlhfSAKcqXqgOHNe/view?usp=sharing&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 26 Jul 2022 07:39:31 GMT</pubDate>
    <dc:creator>abdalla</dc:creator>
    <dc:date>2022-07-26T07:39:31Z</dc:date>
    <item>
      <title>display values with latest date on map</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/display-values-with-latest-date-on-map/m-p/2661043#M37544</link>
      <description>&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;I have a map with alot of points that i need to display the values of pressure that correlate to the latest active month date.&lt;/P&gt;&lt;P&gt;This is how my data looks like&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="abdalla_0-1658820477627.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/754079i4AFBFD21CA943A01/image-size/medium?v=v2&amp;amp;px=400" role="button" title="abdalla_0-1658820477627.png" alt="abdalla_0-1658820477627.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;i havent made any measures or any columns or tables.&amp;nbsp;&lt;/P&gt;&lt;P&gt;My apologies for limited data but my data is very sensitive. My request is how i can add the latest info&amp;nbsp; in the same table without creating a separate table.&lt;/P&gt;&lt;P&gt;The data plots column is just a concatenation between the shut in pressure column and the active month column&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you would like to access the file&amp;nbsp;&lt;/P&gt;&lt;P&gt;feel free to follow my link and download the file&amp;nbsp;&lt;/P&gt;&lt;P&gt;The file's name is experimentation&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/file/d/1fvClF3UtCeX1W71srlhfSAKcqXqgOHNe/view?usp=sharing" target="_blank" rel="noopener"&gt;https://drive.google.com/file/d/1fvClF3UtCeX1W71srlhfSAKcqXqgOHNe/view?usp=sharing&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jul 2022 07:39:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/display-values-with-latest-date-on-map/m-p/2661043#M37544</guid>
      <dc:creator>abdalla</dc:creator>
      <dc:date>2022-07-26T07:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: display values with latest date on map</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/display-values-with-latest-date-on-map/m-p/2668344#M37597</link>
      <description>&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;HI&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/401453"&gt;@abdalla&lt;/a&gt;,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;I'd like to suggest you write a formal with a variable to extract the last date based on the current Well field value.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Then you can use the current Well and lastdate as conditions to find out corresponding &lt;SPAN&gt;pressure&amp;nbsp;&lt;/SPAN&gt;values:&lt;/FONT&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;formual =
VAR _lastdate =
    CALCULATE (
        MAX ( Table[Active Month] ),
        ALLSELECTED ( Table ),
        VALUES ( Table[Well] )
    )
RETURN
    CALCULATE (
        MAX ( Table[Psi] ),
        FILTER ( ALLSELECTED ( Table ), Table[Active Month] = _lastdate ),
        VALUES ( Table[Well] )
    )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Xiaoxin Sheng&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2022 00:50:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/display-values-with-latest-date-on-map/m-p/2668344#M37597</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-29T00:50:38Z</dc:date>
    </item>
  </channel>
</rss>

