<?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: Calculate how many days spent in a status, help find average in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-how-many-days-spent-in-a-status-help-find-average/m-p/2206733#M51969</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="332761" data-lia-user-login="dostdahl" class="lia-mention lia-mention-user"&gt;dostdahl&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What are the expected results?&amp;nbsp;&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;</description>
    <pubDate>Thu, 25 Nov 2021 01:06:05 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-11-25T01:06:05Z</dc:date>
    <item>
      <title>Calculate how many days spent in a status, help find average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-how-many-days-spent-in-a-status-help-find-average/m-p/2197089#M51486</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This might be more of a two part question, but I need a way to find out how many days a record has spent in a status and then I'd like to find the average amount of days that are being spent in each status. The biggest issue I'm running into is starting a new count of days if a status has been updated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Part 1:&lt;/P&gt;&lt;P&gt;I have an Excel spreadsheet that has data including a unique ID, Name, Status, and Date Exported (which is the date we manually pull in information.) Example:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Unique_ID&lt;/TD&gt;&lt;TD&gt;Name&lt;/TD&gt;&lt;TD&gt;Status&lt;/TD&gt;&lt;TD&gt;Date Exported&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;Bill Smith&lt;/TD&gt;&lt;TD&gt;Research&lt;/TD&gt;&lt;TD&gt;2/19/2021&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;Bill Smith&lt;/TD&gt;&lt;TD&gt;Research&lt;/TD&gt;&lt;TD&gt;5/26/2021&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;Bill Smith&lt;/TD&gt;&lt;TD&gt;Research&lt;/TD&gt;&lt;TD&gt;7/6/2021&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;Bob Jones&lt;/TD&gt;&lt;TD&gt;Research&lt;/TD&gt;&lt;TD&gt;2/19/2021&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;Bob Jones&lt;/TD&gt;&lt;TD&gt;Research&lt;/TD&gt;&lt;TD&gt;5/26/2021&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;Bob Jones&lt;/TD&gt;&lt;TD&gt;Cultivation&lt;/TD&gt;&lt;TD&gt;7/6/2021&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;Bob Jones&lt;/TD&gt;&lt;TD&gt;Solicitation&lt;/TD&gt;&lt;TD&gt;9/17/2021&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;Mike Miller&lt;/TD&gt;&lt;TD&gt;Research&lt;/TD&gt;&lt;TD&gt;5/26/2021&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;Mike Miller&lt;/TD&gt;&lt;TD&gt;Cultivation&lt;/TD&gt;&lt;TD&gt;7/6/2021&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;Mike Miller&lt;/TD&gt;&lt;TD&gt;Stewardship&lt;/TD&gt;&lt;TD&gt;9/17/2021&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;John Doe&lt;/TD&gt;&lt;TD&gt;Solicitation&lt;/TD&gt;&lt;TD&gt;9/17/2021&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;John Doe&lt;/TD&gt;&lt;TD&gt;Stewardship&lt;/TD&gt;&lt;TD&gt;10/1/2021&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's possible for a record to stay in the same status for each data pull (like ID #1), but there are cases where a record's status has been updated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've tried creating some measures to help calculate the amount of days that have passed between exports. It seems to work for calculating a running total of days in a status, but it's not accounting for the times where there is a status change and a new count needs to start. In the first measure, I've hardcoded the last export date which isn't probably the most efficient way to do it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DaysInSinceExport = DATEVALUE("10/01/2021")-Table[Date Exported]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This measure does a good job of calculating the total number of days in a status by specific ID number, but doesn't factor in and status changes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DaysStatus = CALCULATE(
                SUM(Table[DaysInSinceExport]),
                FILTER(
                    Table,Table[Date Exported] = CALCULATE(FIRSTDATE(Table[Date Exported]), ALLEXCEPT(Table,Table[Unique_ID],Table[Status]))))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm a bit new to DAX and writing measures but I'm sure there's a way to solve this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Part 2:&lt;/P&gt;&lt;P&gt;Once I'm able to calculate the amount of days a record has spent in a status for the entire dataset of records, I'd like to find the average of how many days are spent in each Status.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help or suggestions will be greatly appreicated, please let me know if you need additional information, thank you in advance!&lt;/P&gt;</description>
      <pubDate>Thu, 18 Nov 2021 16:36:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-how-many-days-spent-in-a-status-help-find-average/m-p/2197089#M51486</guid>
      <dc:creator>dostdahl</dc:creator>
      <dc:date>2021-11-18T16:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate how many days spent in a status, help find average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-how-many-days-spent-in-a-status-help-find-average/m-p/2198129#M51534</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="332761" data-lia-user-login="dostdahl" class="lia-mention lia-mention-user"&gt;dostdahl&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you provide the expected results? Take ID=4 as an example, the days between the two status "&lt;SPAN&gt;Solicitation" and "Stewardship" should be counted for&amp;nbsp;Solicitation, right? Not sure why there is a hardcoded date&amp;nbsp;10/01/2021...&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;it is a Sum of&amp;nbsp;&lt;SPAN style="font-family: inherit;"&gt;[DaysInSinceExport]&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;DaysInSinceExport is a DAX Calculated column&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;DaysInSinceExport = 
VAR CurDate = Table2[Date Exported]
VAR CurID=Table2[Unique_ID]
VAR NextDate = MINX(FILTER(Table2,Table2[Date Exported]&amp;gt;CurDate&amp;amp;&amp;amp;[Unique_ID]=CurID),[Date Exported])
RETURN
DATEDIFF(CurDate,NextDate,DAY)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 08:00:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-how-many-days-spent-in-a-status-help-find-average/m-p/2198129#M51534</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-11-19T08:00:18Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate how many days spent in a status, help find average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-how-many-days-spent-in-a-status-help-find-average/m-p/2202966#M51742</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="332761" data-lia-user-login="dostdahl" class="lia-mention lia-mention-user"&gt;dostdahl&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can try this,&lt;/P&gt;
&lt;P&gt;create the measures,&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;TotalDays = 
    var _mindate=CALCULATE(MIN('Table'[Date Exported]),ALLEXCEPT('Table','Table'[Unique_ID]))
    var _maxdate=CALCULATE(MAX('Table'[Date Exported]),ALLEXCEPT('Table','Table'[Unique_ID]))
return DATEDIFF(_mindate,_maxdate,DAY)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Average = 
    var _countStatus= CALCULATE(DISTINCTCOUNT('Table'[Status]),ALLEXCEPT('Table','Table'[Unique_ID]))
return [TotalDays]/_countStatus&lt;/LI-CODE&gt;
&lt;P&gt;result&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;If this doesn't meet your needs, please add more information.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;(1) what's your TotalDays?&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;(2) what's the average do you want? I mean, for example, the average value is x1&amp;nbsp;divided by x2 . so what's the x1? x2?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Community Support Team _Tang&lt;/P&gt;
&lt;P&gt;If this post&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;, please consider&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Nov 2021 02:00:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-how-many-days-spent-in-a-status-help-find-average/m-p/2202966#M51742</guid>
      <dc:creator>v-xiaotang</dc:creator>
      <dc:date>2021-11-25T02:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate how many days spent in a status, help find average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-how-many-days-spent-in-a-status-help-find-average/m-p/2206551#M51953</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;- Thank you so much for your reply. The calculated column you provided seems to be counting the days that a record is in a status correctly. Would you happen to have a suggestion as to how I can calculate the Average for how many days are spent in each status? Since DaysInSinceExport is a calculated column, I'm having an issue using it to calculate the Average.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 21:21:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-how-many-days-spent-in-a-status-help-find-average/m-p/2206551#M51953</guid>
      <dc:creator>dostdahl</dc:creator>
      <dc:date>2021-11-24T21:21:09Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate how many days spent in a status, help find average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-how-many-days-spent-in-a-status-help-find-average/m-p/2206733#M51969</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="332761" data-lia-user-login="dostdahl" class="lia-mention lia-mention-user"&gt;dostdahl&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What are the expected results?&amp;nbsp;&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;</description>
      <pubDate>Thu, 25 Nov 2021 01:06:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-how-many-days-spent-in-a-status-help-find-average/m-p/2206733#M51969</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-11-25T01:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate how many days spent in a status, help find average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-how-many-days-spent-in-a-status-help-find-average/m-p/2218574#M52582</link>
      <description>&lt;P&gt;Hi Anonymous&lt;/a&gt;, apologies for the delayed response. Regarding expected results, I’d like to be able to calculate the Average for days spent in each of the 4 statuses. Additionally, I have another column that lists a Relationship Manager (RM) for the distinct ID. I’d like to filter by RM to see the averages for time spent in the 4 statuses for their group of records too.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I try the measure Avg = AVERAGE(Table[DaysInSinceExport]) it doesn’t seem to be calculating correctly. I’ve tried using the DaysInSinceExport column in various calculated measures but isn’t an option to use.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The table of data looks something like this:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;ID&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Name&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Status&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Relationship Manager&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Date Exported&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Bill Smith&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Research&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;RM1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2/19/21&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Bill Smith&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Research&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;RM1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;5/26/21&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Bill Smith&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Research&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;RM1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;7/6/21&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Bob Jones&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Research&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;RM2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2/19/21&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Bob Jones&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Research&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;RM2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;5/26/21&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Bob Jones&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Cultivation&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;RM2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;7/6/21&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Bob Jones&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Solicitation&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;RM2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;9/17/21&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Mike Miller&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Research&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;RM1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;5/26/21&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Mike Miller&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Cultivation&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;RM1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;7/6/21&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Mike Miller&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Stewardship&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;RM1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;9/17/21&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;4&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;John Doe&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Solicitation&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;RM3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;9/17/21&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;4&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;John Doe&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Stewardship&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;RM3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;10/1/21&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To display this, I’d like to use the Card visual to show Average amount of days for each status. And then, be able to select a Relationship Manager from a Slicer and have the totals update based on the Relationship Manager selected. Hope this helps clarify, but let me know if you have other questions, thank you in advance.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 16:46:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-how-many-days-spent-in-a-status-help-find-average/m-p/2218574#M52582</guid>
      <dc:creator>dostdahl</dc:creator>
      <dc:date>2021-12-02T16:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate how many days spent in a status, help find average</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-how-many-days-spent-in-a-status-help-find-average/m-p/2224015#M52900</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="332761" data-lia-user-login="dostdahl" class="lia-mention lia-mention-user"&gt;dostdahl&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just messaged you my email, hope you can send me a sample file and expected results, so I can work from there&lt;/P&gt;</description>
      <pubDate>Tue, 07 Dec 2021 00:17:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-how-many-days-spent-in-a-status-help-find-average/m-p/2224015#M52900</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-12-07T00:17:46Z</dc:date>
    </item>
  </channel>
</rss>

