<?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 First non null value in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/First-non-null-value/m-p/2911384#M95137</link>
    <description>&lt;P&gt;I have data that is sorted by report month.&amp;nbsp; Here is a screen shot for one Customer ID.&amp;nbsp; Each Customer can have multiple accounts, but here is one account example:&amp;nbsp;&lt;BR /&gt;&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;What I need to extract is the last $ value (current balance) before the customer closed their account. In this example, it would be $xxx,xxx on report month 04/30/2022.&amp;nbsp; I have created a duplicate current balance column with null values to replace the $0 so that I could do a DAX which would be something like "The first non null value"&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I can't use FIRSTNONBLANK as it could be the case that the last $ in the account was not necessarily their highest/lowest $.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Is there an easy way to get this?&amp;nbsp;&lt;BR /&gt;Thank you!&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 17 Nov 2022 04:21:25 GMT</pubDate>
    <dc:creator>KW123</dc:creator>
    <dc:date>2022-11-17T04:21:25Z</dc:date>
    <item>
      <title>First non null value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/First-non-null-value/m-p/2911384#M95137</link>
      <description>&lt;P&gt;I have data that is sorted by report month.&amp;nbsp; Here is a screen shot for one Customer ID.&amp;nbsp; Each Customer can have multiple accounts, but here is one account example:&amp;nbsp;&lt;BR /&gt;&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;What I need to extract is the last $ value (current balance) before the customer closed their account. In this example, it would be $xxx,xxx on report month 04/30/2022.&amp;nbsp; I have created a duplicate current balance column with null values to replace the $0 so that I could do a DAX which would be something like "The first non null value"&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I can't use FIRSTNONBLANK as it could be the case that the last $ in the account was not necessarily their highest/lowest $.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Is there an easy way to get this?&amp;nbsp;&lt;BR /&gt;Thank you!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2022 04:21:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/First-non-null-value/m-p/2911384#M95137</guid>
      <dc:creator>KW123</dc:creator>
      <dc:date>2022-11-17T04:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: First non null value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/First-non-null-value/m-p/2912385#M95195</link>
      <description>&lt;P&gt;I think you can use&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Last Balance =
LASTNONBLANKVALUE ( 'Table'[Report Month], SUM ( 'Table'[Duplicate balance] ) )
&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 17 Nov 2022 10:48:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/First-non-null-value/m-p/2912385#M95195</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2022-11-17T10:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: First non null value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/First-non-null-value/m-p/2913458#M95273</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp;Thanks! Unfortunately that returns blanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2022 17:45:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/First-non-null-value/m-p/2913458#M95273</guid>
      <dc:creator>KW123</dc:creator>
      <dc:date>2022-11-17T17:45:05Z</dc:date>
    </item>
    <item>
      <title>Re: First non null value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/First-non-null-value/m-p/2913968#M95308</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I have tried using this one:&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Last Balance = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;i&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Query1'[MemberNumber]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;d2&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;LASTNONBLANKVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Query1'[Duplicate current balance]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Query1'[Duplicate current balance]&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;SPAN&gt;all&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Query1'&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;'Query1'[Duplicate current balance]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;BLANK&lt;/SPAN&gt;&lt;SPAN&gt;(),&lt;/SPAN&gt;&lt;SPAN&gt;'Query1'[MemberNumber]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;i&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;return&lt;/SPAN&gt; &lt;SPAN&gt;d2&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;But it returns the largest $ amount in the customers account history, instead of whatever the last $ amount was before they closed their account.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The DAX you suggested returned blank on the report.&amp;nbsp; As a column, it added up the entirety of the account balances.&amp;nbsp; I switched the [reportmonth] to closeddate and that didn't seem to work either (just returned blank)&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 18 Nov 2022 00:03:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/First-non-null-value/m-p/2913968#M95308</guid>
      <dc:creator>KW123</dc:creator>
      <dc:date>2022-11-18T00:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: First non null value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/First-non-null-value/m-p/2914878#M95399</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="410720" data-lia-user-login="KW123" class="lia-mention lia-mention-user"&gt;KW123&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;In order to get a better understanding on your requirement and give you a suitable solution, please provide some&amp;nbsp;&lt;STRONG&gt;fake data&lt;/STRONG&gt;&amp;nbsp;in your table 'Query1' (&lt;STRONG&gt;&lt;EM&gt;exclude&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt;&lt;STRONG&gt;sensitive&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;&lt;STRONG&gt;&lt;EM&gt;data&lt;/EM&gt;&lt;/STRONG&gt;) with&amp;nbsp;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Text&lt;/STRONG&gt;&amp;nbsp;&lt;/FONT&gt;format and your&amp;nbsp;&lt;STRONG&gt;expected result&lt;/STRONG&gt;&amp;nbsp;with backend logic and special examples.&amp;nbsp;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;It is better&lt;/STRONG&gt;&amp;nbsp;&lt;/FONT&gt;if you can share a&amp;nbsp;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;simplified&lt;/STRONG&gt;&amp;nbsp;&lt;/FONT&gt;pbix file. You can refer the following link to upload the file to the community. Thank you.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FDesktop%2FHow-to-upload-PBI-in-Community%2Fm-p%2F1672886&amp;amp;data=04%7C01%7Cv-yiruan%40microsoft.com%7C4f580813734d4a8355b008da16f6e91a%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637847547341062885%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;amp;sdata=YJvujige2YITXKbKED9JieQm5LBdf%2F3IYPM4ggdiijQ%3D&amp;amp;reserved=0" target="_blank" rel="nofollow noopener noreferrer"&gt;How to upload PBI in Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Fri, 18 Nov 2022 10:05:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/First-non-null-value/m-p/2914878#M95399</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-18T10:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: First non null value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/First-non-null-value/m-p/2915593#M95475</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thank you for the feedback.&amp;nbsp; I hope the below helps:&amp;nbsp;&lt;BR /&gt;&lt;img /&gt;&lt;BR /&gt;This is how the data is in the report.&amp;nbsp; This is for &lt;STRONG&gt;one&lt;/STRONG&gt; customer ID.&amp;nbsp; Some customer IDs have multiple account numbers, but in this case it only has one.&amp;nbsp; In my report, I will be making it for every customer ID we have with a closed account.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I am trying to make a report which shows the last balance in the customers account before they closed their account (and then the current balance changes to $0) So for this customer, I want to extract the $ balance that shows in that row on 04-30-2022.&amp;nbsp; Where I am running into problems is that the last balance isn't necessarily the largest $ amount in their account history.&amp;nbsp; So using a MAX or LASTNONBLANK I don't think will work.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Here is an example:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;&amp;nbsp;Customer ID&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;&amp;nbsp;Customer&amp;nbsp; &amp;nbsp;Account&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;&amp;nbsp;Open Date&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;&amp;nbsp;Closed Date&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;&amp;nbsp;Current&amp;nbsp; &amp;nbsp;Balance&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;&amp;nbsp;Last Balance&amp;nbsp; &amp;nbsp;in account&amp;nbsp; &amp;nbsp;(column I am&amp;nbsp; &amp;nbsp;trying to&amp;nbsp; &amp;nbsp;caluclate)&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;123&lt;/TD&gt;&lt;TD&gt;11/07/2019&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;04/30/2022&lt;/TD&gt;&lt;TD&gt;$0&lt;/TD&gt;&lt;TD&gt;$500&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;456&lt;/TD&gt;&lt;TD&gt;06/20/2020&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;01/03/2022&lt;/TD&gt;&lt;TD&gt;$0&lt;/TD&gt;&lt;TD&gt;$1000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;789&lt;/TD&gt;&lt;TD&gt;06/04/2017&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;05/09/2020&lt;/TD&gt;&lt;TD&gt;$0&lt;/TD&gt;&lt;TD&gt;$200&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;234&lt;/TD&gt;&lt;TD&gt;03/08/2021&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;09/04/2022&lt;/TD&gt;&lt;TD&gt;$0&lt;/TD&gt;&lt;TD&gt;$300&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;345&lt;/TD&gt;&lt;TD&gt;07/06/2020&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;11/02/2021&lt;/TD&gt;&lt;TD&gt;$0&lt;/TD&gt;&lt;TD&gt;$700&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;Assume that customer ID 1 is the same customer in the above screenshot of the Data.&amp;nbsp; The first $ value that is in the black box, their closed $ amount, is $500 on 04/30/2022.&amp;nbsp; Since the account is closed, the balance becomes $0 for the report months thereafter.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;There is a direct relationship between the dates table and the report month and an indirect with Closed date and date.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Let me know if you require more information. Thanks again for your help&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Nov 2022 17:41:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/First-non-null-value/m-p/2915593#M95475</guid>
      <dc:creator>KW123</dc:creator>
      <dc:date>2022-11-18T17:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: First non null value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/First-non-null-value/m-p/2919881#M95737</link>
      <description>&lt;P&gt;Bumping this up....&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Nov 2022 22:25:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/First-non-null-value/m-p/2919881#M95737</guid>
      <dc:creator>KW123</dc:creator>
      <dc:date>2022-11-21T22:25:13Z</dc:date>
    </item>
    <item>
      <title>Re: First non null value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/First-non-null-value/m-p/2929273#M96326</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="410720" data-lia-user-login="KW123" class="lia-mention lia-mention-user"&gt;KW123&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I'm sorry that I still can't understanding your requirement. Do you want to get the last balance which is not 0 for per customer per account? For example, if you have the data in below table, what's your expected result? What you want to get is &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;800&lt;/STRONG&gt;&lt;/FONT&gt;? Could you please&amp;nbsp;share a&amp;nbsp;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;simplified&lt;/STRONG&gt;&amp;nbsp;&lt;/FONT&gt;pbix file(&lt;EM&gt;&lt;STRONG&gt;exclude sensitive info&lt;/STRONG&gt;&lt;/EM&gt;) with &lt;STRONG&gt;some sample data &lt;/STRONG&gt;and &lt;STRONG&gt;backend logic&lt;/STRONG&gt;? You can refer the following link to upload the file to the community. Thank you.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FDesktop%2FHow-to-upload-PBI-in-Community%2Fm-p%2F1672886&amp;amp;data=04%7C01%7Cv-yiruan%40microsoft.com%7C4f580813734d4a8355b008da16f6e91a%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637847547341062885%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;amp;sdata=YJvujige2YITXKbKED9JieQm5LBdf%2F3IYPM4ggdiijQ%3D&amp;amp;reserved=0" target="_blank" rel="nofollow noopener noreferrer"&gt;How to upload PBI in Community&lt;/A&gt;&lt;/P&gt;
&lt;TABLE width="738px"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="108.672px"&gt;&amp;nbsp;Customer ID&lt;/TD&gt;
&lt;TD width="171px"&gt;&amp;nbsp;Customer&amp;nbsp; &amp;nbsp;Account&lt;/TD&gt;
&lt;TD width="92.4688px"&gt;&amp;nbsp;Open Date&lt;/TD&gt;
&lt;TD width="117.297px"&gt;&amp;nbsp;Closed Date&lt;/TD&gt;
&lt;TD width="92.4688px"&gt;xxDate&lt;/TD&gt;
&lt;TD width="155.094px"&gt;&amp;nbsp;Current&amp;nbsp; &amp;nbsp;Balance&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="108.672px"&gt;1&lt;/TD&gt;
&lt;TD width="171px"&gt;123&lt;/TD&gt;
&lt;TD width="92.4688px"&gt;11/7/2019&lt;/TD&gt;
&lt;TD width="117.297px"&gt;&amp;nbsp;04/30/2022&lt;/TD&gt;
&lt;TD width="92.4688px"&gt;3/2/2021&lt;/TD&gt;
&lt;TD width="155.094px"&gt;$4,500&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="108.672px"&gt;1&lt;/TD&gt;
&lt;TD width="171px"&gt;123&lt;/TD&gt;
&lt;TD width="92.4688px"&gt;11/8/2019&lt;/TD&gt;
&lt;TD width="117.297px"&gt;&amp;nbsp;04/30/2023&lt;/TD&gt;
&lt;TD width="92.4688px"&gt;12/14/2021&lt;/TD&gt;
&lt;TD width="155.094px"&gt;3200&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="108.672px"&gt;1&lt;/TD&gt;
&lt;TD width="171px"&gt;123&lt;/TD&gt;
&lt;TD width="92.4688px"&gt;11/9/2019&lt;/TD&gt;
&lt;TD width="117.297px"&gt;&amp;nbsp;04/30/2024&lt;/TD&gt;
&lt;TD width="92.4688px"&gt;2/28/2022&lt;/TD&gt;
&lt;TD width="155.094px"&gt;1500&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="108.672px"&gt;1&lt;/TD&gt;
&lt;TD width="171px"&gt;123&lt;/TD&gt;
&lt;TD width="92.4688px"&gt;11/10/2019&lt;/TD&gt;
&lt;TD width="117.297px"&gt;&amp;nbsp;04/30/2025&lt;/TD&gt;
&lt;TD width="92.4688px"&gt;4/3/2022&lt;/TD&gt;
&lt;TD width="155.094px"&gt;800&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="108.672px"&gt;1&lt;/TD&gt;
&lt;TD width="171px"&gt;123&lt;/TD&gt;
&lt;TD width="92.4688px"&gt;11/10/2019&lt;/TD&gt;
&lt;TD width="117.297px"&gt;&amp;nbsp;04/30/2025&lt;/TD&gt;
&lt;TD width="92.4688px"&gt;4/30/2022&lt;/TD&gt;
&lt;TD width="155.094px"&gt;0&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Fri, 25 Nov 2022 10:10:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/First-non-null-value/m-p/2929273#M96326</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-25T10:10:38Z</dc:date>
    </item>
  </channel>
</rss>

