<?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: Add Total current balance for Customers with multiple accounts in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2896026#M94152</link>
    <description>&lt;P&gt;Can you please try this? Modify to fit your field names.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Customer Balance2 =&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&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;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(Query1&lt;/SPAN&gt;&lt;SPAN&gt;[CurrentBalance]&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;SPAN&gt;ALLEXCEPT&lt;/SPAN&gt;&lt;SPAN&gt;(Query1&lt;/SPAN&gt;&lt;SPAN&gt;,Query1&lt;/SPAN&gt;&lt;SPAN&gt;[Customer ID]&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 09 Nov 2022 18:29:23 GMT</pubDate>
    <dc:creator>djurecic</dc:creator>
    <dc:date>2022-11-09T18:29:23Z</dc:date>
    <item>
      <title>Add Total current balance for Customers with multiple accounts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2894273#M94034</link>
      <description>&lt;P&gt;I think I need an IF statement.&lt;BR /&gt;&lt;BR /&gt;I need to show Customer ID's with a total current account balance of $0.00.&amp;nbsp; Each Customer ID can have multiple account types with different balances.&amp;nbsp; I need to pull only the Customer ID with a current total balance of $0.00 based on the current month.&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;Customer ID&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Account Number&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Current Balance&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;111&lt;/TD&gt;&lt;TD&gt;$0.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;112&lt;/TD&gt;&lt;TD&gt;$0.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;113&lt;/TD&gt;&lt;TD&gt;$100&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;114&lt;/TD&gt;&lt;TD&gt;$0.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;115&lt;/TD&gt;&lt;TD&gt;$200&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;116&lt;/TD&gt;&lt;TD&gt;$0.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;117&lt;/TD&gt;&lt;TD&gt;$500&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;118&lt;/TD&gt;&lt;TD&gt;$0.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;119&lt;/TD&gt;&lt;TD&gt;$0.00&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;So only customer ID 1, 3, 5 should show up in our filter as their total account balance is $0.00 for this month.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 05:09:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2894273#M94034</guid>
      <dc:creator>KW123</dc:creator>
      <dc:date>2022-11-09T05:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: Add Total current balance for Customers with multiple accounts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2894939#M94066</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Here is one way to do this:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Create filter measure:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Measure 20 = &lt;/SPAN&gt;&lt;SPAN&gt;IF&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;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table (11)'&lt;/SPAN&gt;&lt;SPAN&gt;[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;'Table (11)'&lt;/SPAN&gt;&lt;SPAN&gt;[Account Number]&lt;/SPAN&gt;&lt;SPAN&gt;))=&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;ALL will remove filter context of accounts&lt;BR /&gt;&lt;BR /&gt;Place the measure as a filter:&lt;BR /&gt;&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!&lt;BR /&gt;&lt;BR /&gt;My LinkedIn: &lt;A href="https://www.linkedin.com/in/n%C3%A4ttiahov-00001/" target="_blank"&gt;https://www.linkedin.com/in/n%C3%A4ttiahov-00001/&lt;/A&gt;&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 09 Nov 2022 09:34:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2894939#M94066</guid>
      <dc:creator>ValtteriN</dc:creator>
      <dc:date>2022-11-09T09:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: Add Total current balance for Customers with multiple accounts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895766#M94129</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="343431" data-lia-user-login="ValtteriN" class="lia-mention lia-mention-user"&gt;ValtteriN&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thank you for taking the time to respond!&amp;nbsp;&lt;BR /&gt;I have used the measure you created but I don't think it's quite what I am looking for.&amp;nbsp; Basically, if a customer Id has an account with a balance &amp;gt;0 in addition to an account = 0, then I don't want that to show in my dashboard.&amp;nbsp; If a customer has multiple accounts with a balance, I also do not want to show it.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I only want to show customers with a total balanace of 0, across all of their different accounts.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;In my data using the measure you provided, I have a customer id with two different account numbers.&amp;nbsp; One has a balance of 0, one account has a balance of 100.&amp;nbsp; The account with 0 produces a measure 20 column of 1 and the account with 100 produces a measure of 0.&amp;nbsp; So even if I filter out for just the 1, the customers total balance is still not 0.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I hope that makes sense.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 15:53:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895766#M94129</guid>
      <dc:creator>KW123</dc:creator>
      <dc:date>2022-11-09T15:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: Add Total current balance for Customers with multiple accounts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895884#M94134</link>
      <description>&lt;P&gt;You could use a measure like this (assuming the table name is "Balance")&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Customer Balance = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Balance&lt;/SPAN&gt;&lt;SPAN&gt;[Current Balance]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;REMOVEFILTERS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Balance&lt;/SPAN&gt;&lt;SPAN&gt;[Account Number]&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;which gives the following result&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;/DIV&gt;&lt;DIV&gt;Then filter the visual where Cutomer Balance is 0 which gives the following result:&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 09 Nov 2022 16:51:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895884#M94134</guid>
      <dc:creator>djurecic</dc:creator>
      <dc:date>2022-11-09T16:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: Add Total current balance for Customers with multiple accounts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895909#M94136</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="283130" data-lia-user-login="djurecic" class="lia-mention lia-mention-user"&gt;djurecic&lt;/a&gt;&amp;nbsp; Thank you!&lt;BR /&gt;&lt;BR /&gt;Something like this would work but in your example I wouldn't want customer ID 2 to come back since they still have a balance of $200 if you combine all of their accounts.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Lets say that if the customer account balance is $0, then that account would be considered closed.&amp;nbsp; If the balance is &amp;gt;$0 the account is open.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I am looking to extract customer ID with ALL closed accounts.&amp;nbsp; Meaning, even if they have 1 closed account but at least another open account, I don't want them to come up on the report.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 16:54:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895909#M94136</guid>
      <dc:creator>KW123</dc:creator>
      <dc:date>2022-11-09T16:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: Add Total current balance for Customers with multiple accounts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895919#M94138</link>
      <description>&lt;P&gt;Ok. To do that, just remove the column "Current Balance" from the table which will give the following result. You could also remove Account Number to get only 1 customer record shown like below:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please mark as solution if you believe this has solved the issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 16:58:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895919#M94138</guid>
      <dc:creator>djurecic</dc:creator>
      <dc:date>2022-11-09T16:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: Add Total current balance for Customers with multiple accounts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895932#M94139</link>
      <description>&lt;P&gt;There was an error with the original measure I posted: here is an update which will allow the first table to work:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Customer Balance = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&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;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Balance&lt;/SPAN&gt;&lt;SPAN&gt;[Current Balance]&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;SPAN&gt;REMOVEFILTERS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Balance&lt;/SPAN&gt;&lt;SPAN&gt;[Account Number]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;REMOVEFILTERS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Balance&lt;/SPAN&gt;&lt;SPAN&gt;[Current Balance]&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;img /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 09 Nov 2022 17:20:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895932#M94139</guid>
      <dc:creator>djurecic</dc:creator>
      <dc:date>2022-11-09T17:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: Add Total current balance for Customers with multiple accounts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895953#M94143</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="283130" data-lia-user-login="djurecic" class="lia-mention lia-mention-user"&gt;djurecic&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I am not sure what I am doing incorrectly.&amp;nbsp; Here is a screen grab of what is happening.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I used&amp;nbsp;&lt;SPAN&gt;Customer Balance =&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&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;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Balance&lt;/SPAN&gt;&lt;SPAN&gt;[Current Balance]&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;SPAN&gt;REMOVEFILTERS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Balance&lt;/SPAN&gt;&lt;SPAN&gt;[Account Number]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;REMOVEFILTERS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Balance&lt;/SPAN&gt;&lt;SPAN&gt;[Current Balance]&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;As you can see, Customer ID&amp;nbsp; 1 has both closed accounts with a combined balance of 0.&amp;nbsp; The account numbers for each row are different, so a customer ID will have different account numbers.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Customer ID 2, 3, 4, all have a balance of 0, but they also have an open account with a balance &amp;gt;0 so in this case, I only want Customer ID to return.&amp;nbsp;&amp;nbsp;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 17:28:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895953#M94143</guid>
      <dc:creator>KW123</dc:creator>
      <dc:date>2022-11-09T17:28:59Z</dc:date>
    </item>
    <item>
      <title>Re: Add Total current balance for Customers with multiple accounts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895957#M94144</link>
      <description>&lt;P&gt;You've added columns to the matrix, so you need to filter those out to get the total per customer.&lt;/P&gt;&lt;P&gt;Since there are a lot of columns, instead of removing filters individually you can try something like this:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Customer Balance = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&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;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Balance&lt;/SPAN&gt;&lt;SPAN&gt;[Current Balance]&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;SPAN&gt;ALLEXCEPT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Balance&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Balance&lt;/SPAN&gt;&lt;SPAN&gt;[Customer ID]&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, is that table fitlered on Current Balance is 0?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 17:38:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895957#M94144</guid>
      <dc:creator>djurecic</dc:creator>
      <dc:date>2022-11-09T17:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: Add Total current balance for Customers with multiple accounts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895966#M94146</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="283130" data-lia-user-login="djurecic" class="lia-mention lia-mention-user"&gt;djurecic&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="283130" data-lia-user-login="djurecic" class="lia-mention lia-mention-user"&gt;djurecic&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I tried it this way too but this is the same customer ID, and it's not adding the two balances together.&amp;nbsp; One account should be $0 and the other is $100 for example.&amp;nbsp; So even if I filtered it for $0, it is false as the customer still has an open account with a balance.&amp;nbsp;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 17:38:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895966#M94146</guid>
      <dc:creator>KW123</dc:creator>
      <dc:date>2022-11-09T17:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: Add Total current balance for Customers with multiple accounts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895972#M94147</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="283130" data-lia-user-login="djurecic" class="lia-mention lia-mention-user"&gt;djurecic&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I can't filter it to current balance of $0 because customer ID has an open account with a balance &amp;gt;0.&amp;nbsp; If I filter it to 0 then it will return customer ID 1 but that is false as customer ID 1 still has an open account with &amp;gt;0 balance.&amp;nbsp; I am only looking to return customers with a total of 0 across all of their accounts&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 17:40:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895972#M94147</guid>
      <dc:creator>KW123</dc:creator>
      <dc:date>2022-11-09T17:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: Add Total current balance for Customers with multiple accounts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895975#M94148</link>
      <description>&lt;P&gt;Sorry meant to say "Customer Balance" not "Current Balance"&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 17:41:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895975#M94148</guid>
      <dc:creator>djurecic</dc:creator>
      <dc:date>2022-11-09T17:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: Add Total current balance for Customers with multiple accounts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895979#M94149</link>
      <description>&lt;P&gt;&lt;img /&gt;Ideally yes, but it's not adding the accounts up correctly.&amp;nbsp; This customer is the same customer ID but it doesn't appear to be adding all accounts correctly.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 17:44:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895979#M94149</guid>
      <dc:creator>KW123</dc:creator>
      <dc:date>2022-11-09T17:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: Add Total current balance for Customers with multiple accounts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895981#M94150</link>
      <description>&lt;P&gt;What Dax are you using for "Customer Balance2" ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 17:46:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2895981#M94150</guid>
      <dc:creator>djurecic</dc:creator>
      <dc:date>2022-11-09T17:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: Add Total current balance for Customers with multiple accounts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2896007#M94151</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="283130" data-lia-user-login="djurecic" class="lia-mention lia-mention-user"&gt;djurecic&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Customer Balance2 = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Query1[CurrentBalance]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;REMOVEFILTERS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Query1)[accountnumber]&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 09 Nov 2022 18:09:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2896007#M94151</guid>
      <dc:creator>KW123</dc:creator>
      <dc:date>2022-11-09T18:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: Add Total current balance for Customers with multiple accounts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2896026#M94152</link>
      <description>&lt;P&gt;Can you please try this? Modify to fit your field names.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Customer Balance2 =&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&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;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(Query1&lt;/SPAN&gt;&lt;SPAN&gt;[CurrentBalance]&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;SPAN&gt;ALLEXCEPT&lt;/SPAN&gt;&lt;SPAN&gt;(Query1&lt;/SPAN&gt;&lt;SPAN&gt;,Query1&lt;/SPAN&gt;&lt;SPAN&gt;[Customer ID]&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 18:29:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2896026#M94152</guid>
      <dc:creator>djurecic</dc:creator>
      <dc:date>2022-11-09T18:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: Add Total current balance for Customers with multiple accounts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2896048#M94153</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="283130" data-lia-user-login="djurecic" class="lia-mention lia-mention-user"&gt;djurecic&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;This seems to be on the right track! Is there a way to add a date filter so that it's not adding the Customers lifetime balance but their current month balance?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Right now the balance is the same for all accounts which we want, however, it is just adding up the lifetime balances instead of current balance.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 18:39:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2896048#M94153</guid>
      <dc:creator>KW123</dc:creator>
      <dc:date>2022-11-09T18:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Add Total current balance for Customers with multiple accounts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2896059#M94157</link>
      <description>&lt;P&gt;Yes- you need to add a date table to your report if you have not already done it.&lt;/P&gt;&lt;P&gt;You can download a script here if you don't have one:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sqlbi.com/articles/reference-date-table-in-dax-and-power-bi/" target="_blank" rel="noopener nofollow noreferrer"&gt;https://www.sqlbi.com/articles/reference-date-table-in-dax-and-power-bi/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then create a relationship between Query1 and the date table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then add a slicer to your report page and set that to the current month.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please mark as solution if you believe this has solved the issue.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 18:49:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2896059#M94157</guid>
      <dc:creator>djurecic</dc:creator>
      <dc:date>2022-11-09T18:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Add Total current balance for Customers with multiple accounts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2896063#M94159</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Customer Balance2 = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&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;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Query1[CurrentBalance]&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;SPAN&gt;ALLEXCEPT&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[AccountNumber]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;'Dates'[Date]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;'Dates'[Date]&lt;/SPAN&gt;&lt;SPAN&gt; ) )&lt;BR /&gt;&lt;BR /&gt;I got it!! Thanks so much for your help I really appreciate it&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 09 Nov 2022 18:53:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2896063#M94159</guid>
      <dc:creator>KW123</dc:creator>
      <dc:date>2022-11-09T18:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: Add Total current balance for Customers with multiple accounts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2896077#M94161</link>
      <description>&lt;P&gt;You're welcome!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please mark as solution if you believe this has solved the issue.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 18:57:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-Total-current-balance-for-Customers-with-multiple-accounts/m-p/2896077#M94161</guid>
      <dc:creator>djurecic</dc:creator>
      <dc:date>2022-11-09T18:57:34Z</dc:date>
    </item>
  </channel>
</rss>

