<?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: Running total of open issues in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1124882#M16609</link>
    <description>&lt;P&gt;I know this is a bit of a wild example, however from the table below - I would expect the daily count of open issues to never exceed 3 because there are only 3 uers (key = phone number) who are able to open a ticket.&amp;nbsp; And one user can only have one ticket open at any given time.&amp;nbsp; So if they appear to be opening more tickets - the ceiling should be one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And when one&amp;nbsp; continually closes his ticket (false or blank) it should only decrement for that user.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so on May 7th and May 8th below, the daily running total should remain at 2 because users 111 and 222 still have open tickets, even though 333 had closed his twice on two days.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 28 May 2020 03:18:10 GMT</pubDate>
    <dc:creator>Surfacescan</dc:creator>
    <dc:date>2020-05-28T03:18:10Z</dc:date>
    <item>
      <title>Running total of open issues</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1055136#M14533</link>
      <description>&lt;P&gt;Hi - I am trying to find a DAX measure to achieve the following.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Each day we survey to see if people are facing an issue.&amp;nbsp; Blanks and falses are considered = no issue whereas&amp;nbsp;true = an issue.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I want to keep track of the total count (running total) of ongoing issues over time.&amp;nbsp; And I also need to keep track if a client's issue has been resolved in order to get an accurate running total over time.&amp;nbsp; I plan to use this to make a time series line chart showing the open issues over date range.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is what I have come up with as a table that I would like.&amp;nbsp; I need help creating the Status column and the "Open issues" columns. Perhaps the Status column is unessesary?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Key&lt;/TD&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;TD&gt;Issue&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Status&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;Open Issues (Running Total)&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;Mon&lt;/TD&gt;&lt;TD&gt;true&lt;/TD&gt;&lt;TD&gt;unresolved&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;Wed&lt;/TD&gt;&lt;TD&gt;false&lt;/TD&gt;&lt;TD&gt;resolved&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;Fri&lt;/TD&gt;&lt;TD&gt;true&lt;/TD&gt;&lt;TD&gt;unresolved&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;Tues&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;Thurs&lt;/TD&gt;&lt;TD&gt;true&lt;/TD&gt;&lt;TD&gt;unresolved&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;Sat&lt;/TD&gt;&lt;TD&gt;true&lt;/TD&gt;&lt;TD&gt;unresolved&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;Wed&lt;/TD&gt;&lt;TD&gt;true&lt;/TD&gt;&lt;TD&gt;unresolved&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;Sat&lt;/TD&gt;&lt;TD&gt;true&lt;/TD&gt;&lt;TD&gt;unresolved&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;Sun&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;false&lt;/TD&gt;&lt;TD&gt;resolved&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is how I imagine I would visualise the above data table:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Any suggestions would be welcomed!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Bart Sullivan&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2020 03:31:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1055136#M14533</guid>
      <dc:creator>Surfacescan</dc:creator>
      <dc:date>2020-04-29T03:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: Running total of open issues</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1055222#M14536</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="226551" data-lia-user-login="Surfacescan" class="lia-mention lia-mention-user"&gt;Surfacescan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this example&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Key&lt;/TD&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;TD&gt;Issue&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;27 April 2020&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;29 April 2020&lt;/TD&gt;&lt;TD&gt;False&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;01 May 2020&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;28 April 2020&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;30 April 2020&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;02 May 2020&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;29 April 2020&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;02 May 2020&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;03 May 2020&lt;/TD&gt;&lt;TD&gt;False&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Issue column should be &lt;STRONG&gt;Text Type&lt;/STRONG&gt; and Date column should be &lt;STRONG&gt;Date Type&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;Open Issues = 
VAR _issue =
    TOTALYTD (
        COUNT ( 'Table'[Key] ),
        'Table'[Date],
        'Table'[Issue] = "TRUE"
    )
VAR _resolved =
    TOTALYTD (
        COUNT ( 'Table'[Key] ),
        'Table'[Date],
        'Table'[Issue] = "FALSE"
    )
VAR _openissues = _issue - _resolved
RETURN
    _openissues&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution!&lt;BR /&gt;Appreciate with a kudos &lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2020 05:12:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1055222#M14536</guid>
      <dc:creator>nandukrishnavs</dc:creator>
      <dc:date>2020-04-29T05:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: Running total of open issues</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1056201#M14562</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="32333" data-lia-user-login="nandukrishnavs" class="lia-mention lia-mention-user"&gt;nandukrishnavs&lt;/a&gt;&amp;nbsp;this is 95% of the way there!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have one issue.&amp;nbsp; Because it is a weekly survey, if a respondent does not have an issue, he/she is going to respond "False" each week - I don't want the result to go into -0.&amp;nbsp; See attached chart below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way we can set a floor so that the count never shows less than 0 - because a count of 0 is what is desired.&amp;nbsp; If it is zero that means there are no open issues!&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;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2020 10:44:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1056201#M14562</guid>
      <dc:creator>Surfacescan</dc:creator>
      <dc:date>2020-04-29T10:44:59Z</dc:date>
    </item>
    <item>
      <title>Re: Running total of open issues</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1056258#M14564</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="226551" data-lia-user-login="Surfacescan" class="lia-mention lia-mention-user"&gt;Surfacescan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;Open Issues = 
VAR _issue =
    TOTALYTD (
        COUNT ( 'Table'[Key] ),
        'Table'[Date],
        'Table'[Issue] = "TRUE"
    )
VAR _resolved =
    TOTALYTD (
        COUNT ( 'Table'[Key] ),
        'Table'[Date],
        'Table'[Issue] = "FALSE"
    )
VAR _openissues = _issue - _resolved
RETURN
    if(_openissues&amp;lt;0,0,_openissues)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have applied an IF statement for checking the value.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this is not working, please share your data tables.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution!&lt;BR /&gt;Appreciate with a kudos &lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2020 11:08:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1056258#M14564</guid>
      <dc:creator>nandukrishnavs</dc:creator>
      <dc:date>2020-04-29T11:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: Running total of open issues</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1056565#M14582</link>
      <description>&lt;P&gt;Hi there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's best not to use the TOTALYTD function the way it's used in&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="32333" data-lia-user-login="nandukrishnavs" class="lia-mention lia-mention-user"&gt;nandukrishnavs&lt;/a&gt;'s measure. Please read this to know why:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.sqlbi.com/blog/marco/2018/08/10/the-hidden-secrets-of-totalytd/" target="_blank" rel="noopener"&gt;https://www.sqlbi.com/blog/marco/2018/08/10/the-hidden-secrets-of-totalytd/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Secondly, the measure does not use a proper calendar dimension, hence it's prone to errors later on (without you even noticing it). If you create a proper calendar, this measure can be translated into this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Open Issues = 
VAR __issue =
	calculate(
		COUNT ( 'Table'[Key] ),
		datesytd( Calendar[Date] ),
		// The field 'Table'[Issue] should
		// be logical, not text! If you are
		// going to slice by the field [Issue]
		// in the 'Table', then you need keepfilters.
		// If this field is going to be hidden, then
		// you can remove the modifier and leave only.
		// 'Table'[Issue] just like that without any comparison.
		keepfilters( 'Table'[Issue] )
	)
VAR __resolved =
	calculate(
		COUNT ( 'Table'[Key] ),
		datesytd( Calendar[Date] ),
		// Same remark as above applies.
		keepfilters( NOT( 'Table'[Issue] ) )
	)
VAR __openIssues = __issue - __resolved
RETURN
    ( __openIssues &amp;gt; 0) * __openIssues&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When you create a model, please stick to Best Practices unless you want to suffer later and spend countless hours/days/weeks trying to figure out what the code does.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best&lt;/P&gt;
&lt;P&gt;D&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2020 13:29:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1056565#M14582</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-29T13:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: Running total of open issues</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1057500#M14618</link>
      <description>&lt;P&gt;Just to confirm:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The&amp;nbsp; Calendar[date] should be CALENDAR('my table'[date]) ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And all my data is stored as text (not logical) and in 20 different columns with the equivalent of yes/no&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you advise I change these all to true / false data types?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;Anonymous&lt;/a&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2020 20:54:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1057500#M14618</guid>
      <dc:creator>Surfacescan</dc:creator>
      <dc:date>2020-04-29T20:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: Running total of open issues</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1057637#M14623</link>
      <description>Hi.&lt;BR /&gt;&lt;BR /&gt;It all depends. First of all, you should never under any circumstances expose columns in your fact table to the user. You should always create dimensions with the attributes you want to expose and slice by them only. In the fact table only measures can be exposed. About cerating a proper calendar in the model you can watch this:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.sqlbi.com/tv/time-intelligence-in-microsoft-power-bi/" target="_blank"&gt;https://www.sqlbi.com/tv/time-intelligence-in-microsoft-power-bi/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If you want to know how to build correct models by employing star-schema, you can watch these:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=_quTwyvDfG0" target="_blank"&gt;https://www.youtube.com/watch?v=_quTwyvDfG0&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=78d6mwR8GtA" target="_blank"&gt;https://www.youtube.com/watch?v=78d6mwR8GtA&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If you have a column in your fact table that is a logical flag (not exposed to the end user, of course), it should be logical, not text. If, however, you want to present a dimension column that is logical in nature to the end user, you should make it a text column with some well chosen names of the flags. For instance, if you have a flag that says whether or not a transaction is valid and you want to slice by it, then you'd change the TRUE value into "Valid", and the other one into "Not Valid."&lt;BR /&gt;&lt;BR /&gt;Please try to learn about correct data modeling.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D</description>
      <pubDate>Wed, 29 Apr 2020 23:50:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1057637#M14623</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-29T23:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: Running total of open issues</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1057800#M14625</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;thanks - I can appreciate that I have a lot more to learn about proper data modelling and I see how valuable it is for building a solid application.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;While I do plan to follow your approach when I have the proper time, I have an advanced question.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When initially I tried&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="32333" data-lia-user-login="nandukrishnavs" class="lia-mention lia-mention-user"&gt;nandukrishnavs&lt;/a&gt;&amp;nbsp;solution, it worked for one column but when I added a second and third calculated column using the same DAX code (let's call these water_issues and electricity_issues) I got an error about a circular dependancies.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I guess this is realted to me perforing these functions on the raw columns instead of measures.&amp;nbsp; What do you think?&amp;nbsp; Would your updated approach resolve this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 02:16:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1057800#M14625</guid>
      <dc:creator>Surfacescan</dc:creator>
      <dc:date>2020-04-30T02:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: Running total of open issues</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1058643#M14641</link>
      <description>No, it would not. Please read this to understand where this error comes from and how to avoid it:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.sqlbi.com/articles/avoiding-circular-dependency-errors-in-dax/" target="_blank"&gt;https://www.sqlbi.com/articles/avoiding-circular-dependency-errors-in-dax/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D</description>
      <pubDate>Thu, 30 Apr 2020 08:37:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1058643#M14641</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-30T08:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: Running total of open issues</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1124295#M16599</link>
      <description>&lt;P&gt;Hello again&amp;nbsp;Anonymous&lt;/a&gt;.&amp;nbsp; I took some time away from this and returned and took your advice to revist the data modelling.&amp;nbsp; I have implemented your suggestion and I have some strange behaviour and thought you might be able to troubleshoot it with me:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I am using the following data:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Key&lt;/TD&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;TD&gt;Issue&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;27 April 2020&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;29 April 2020&lt;/TD&gt;&lt;TD&gt;False&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;01 May 2020&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;28 April 2020&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;30 April 2020&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;02 May 2020&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;29 April 2020&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;02 May 2020&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;03 May 2020&lt;/TD&gt;&lt;TD&gt;False&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I first create this measure:&lt;/P&gt;&lt;PRE&gt;Open Issues = &lt;BR /&gt;VAR __issue =&lt;BR /&gt;    calculate(&lt;BR /&gt;        COUNT ( 'TD - Fiche EIMA - Live Data Viamo Platform'[Phone] ),&lt;BR /&gt;        datesytd( Calendar[Date] ),&lt;BR /&gt;       // The field 'Table'[Issue] should&lt;BR /&gt;       // be logical, not text! If you are&lt;BR /&gt;       // going to slice by the field [Issue]&lt;BR /&gt;       // in the 'Table', then you need keepfilters.&lt;BR /&gt;       // If this field is going to be hidden, then&lt;BR /&gt;       // you can remove the modifier and leave only.&lt;BR /&gt;       // 'Table'[Issue] just like that without any comparison.&lt;BR /&gt;&lt;BR /&gt;       keepfilters( 'TD - Fiche EIMA - Live Data Viamo Platform'[Open Tent Issues] )&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;VAR __resolved =&lt;BR /&gt;     calculate(&lt;BR /&gt;         COUNT ( 'TD - Fiche EIMA - Live Data Viamo Platform'[Phone] ),&lt;BR /&gt;         datesytd( Calendar[Date] ),&lt;BR /&gt;         // Same remark as above applies.&lt;BR /&gt;&lt;BR /&gt;         keepfilters( NOT( 'TD - Fiche EIMA - Live Data Viamo Platform'[Open Tent Issues] ) )&lt;BR /&gt;     )&lt;BR /&gt;&lt;BR /&gt;VAR __openIssues = __issue - __resolved&lt;BR /&gt;RETURN&lt;BR /&gt;( __openIssues &amp;gt; 0) * __openIssues&lt;/PRE&gt;&lt;P&gt;Then I create a quick measure for calculating the running total (I wonder if its possible to combine this into the first measure above and reduce thias to one measure?):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Open Issues running total in Started = &lt;BR /&gt;CALCULATE(&lt;BR /&gt;    [Open Issues],&lt;BR /&gt;    FILTER(&lt;BR /&gt;            ALLSELECTED('TD - Fiche EIMA - Live Data Viamo Platform'[Started]),&lt;BR /&gt;            ISONORAFTER('TD - Fiche EIMA - Live Data Viamo Platform'[Started], MAX('TD - Fiche EIMA - Live Data Viamo Platform'[Started]), DESC)&lt;BR /&gt;    )&lt;BR /&gt;)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And here is the chart I am getting:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;The issue is that the running total doesnt seem to be behaving as I would expect.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;There is an issue on April 27th for Key A&lt;/LI&gt;&lt;LI&gt;The next "toggle" (non issue) for Key A is not until April 29th&lt;/LI&gt;&lt;LI&gt;Therefore, I would expect April 28th to still show 1 issue but instead it has decremented&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I think its really close, I'm just missing something that has to do with the precision of the cumulative total perhaps and the first value for a Key?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for any thoughts you have.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Wed, 27 May 2020 19:59:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1124295#M16599</guid>
      <dc:creator>Surfacescan</dc:creator>
      <dc:date>2020-05-27T19:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: Running total of open issues</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1124312#M16600</link>
      <description>&lt;P&gt;On further reflection, I wonder if the count of open/resolved issues is not being applied just to one user/key and instead is a running total across all open/resolved tickets.&amp;nbsp; Perhaps the running total measure is confounding that...&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2020 20:07:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1124312#M16600</guid>
      <dc:creator>Surfacescan</dc:creator>
      <dc:date>2020-05-27T20:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: Running total of open issues</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1124417#M16602</link>
      <description>There are several problems with your code/approach.&lt;BR /&gt;&lt;BR /&gt;1. There are missing values in the Issue column. BLANK is treated as FALSE when the column in logical. Is this what you want? If not, you have to modify the measure to take this into account.&lt;BR /&gt;&lt;BR /&gt;2. I don't see the model, so I can't say anything. For instance, you don't say what's Started and why you are calculating a RT using a column in a fact table instead of a Calendar.&lt;BR /&gt;&lt;BR /&gt;3. Time-intel functions work properly only on proper Calendars.&lt;BR /&gt;&lt;BR /&gt;4. When a measure depends on Calendar, you have to use the Calendar when showing values and calculating time-dependent values. You either cannot use any other columns or you have to know what and why you are doing what you're doing.&lt;BR /&gt;&lt;BR /&gt;5. No columns from a fact table can be exposed. They must be hidden. Slicing can only be done via dimensions. If you don't do this, sooner or later you'll create a monster, hard to understand and hard to code against.&lt;BR /&gt;&lt;BR /&gt;6. Your running total (from the beginning of time) is not what it should be and it'll probably never be because the measure [Open Issues] is dependent on DATESYTD function, so it'll always return data for the latest currently visible year.&lt;BR /&gt;&lt;BR /&gt;7. Which field is the Calendar joining to the fact table on?&lt;BR /&gt;&lt;BR /&gt;In a word, I think (from what you've shown) many things are incorrect here.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D</description>
      <pubDate>Wed, 27 May 2020 21:27:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1124417#M16602</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-27T21:27:02Z</dc:date>
    </item>
    <item>
      <title>Re: Running total of open issues</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1124868#M16608</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@@darlov&amp;nbsp;wrote:&lt;BR /&gt;There are several problems with your code/approach.&lt;BR /&gt;&lt;BR /&gt;1. There are missing values in the Issue column. BLANK is treated as FALSE when the column in logical. Is this what you want? If not, you have to modify the measure to take this into account.&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;UL&gt;&lt;LI&gt;Yes - the behaviour I am going for is that if&amp;nbsp; a survey respondant does not report an issue in their weekly submission (blank) or they confirm that there is no issue (false) then it should be the same behaviour.&lt;/LI&gt;&lt;LI&gt;If the respondant has previously reported an open issue (true) and this week the issue was resolved (false) then the issue counter should decrement to 0 ONLY FOR THAT USER.&lt;/LI&gt;&lt;LI&gt;If a user already has a ticket open, then the ceiling for this should&amp;nbsp; be 1.&amp;nbsp; It is not possible to increase the count past one PER USER.&lt;/LI&gt;&lt;LI&gt;If a ticket was opened two weeks ago, it should stay open (count =1) for that user as part of the cumulative total, even if other users open and close their tickets in this time.&lt;/LI&gt;&lt;LI&gt;Essentially I am looking for a daily total of open issues which takes into account if an inidividual still has a ticket unresolved on that reporting date.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;All your other questions are super helpful and revealing how much I still need to learn about PowerBI.&amp;nbsp; I have taken the time to address everything (except separating the Fact and Dimension tables, which I plan to do with time)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you are able to help me see why the measure is not achieving the logic I'm aiming for above, I would be grateful for any pointers.&amp;nbsp; I have a feeling I am missing something in my logic to achieve this.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;2. I don't see the model, so I can't say anything. For instance, you don't say what's Started and why you are calculating a RT using a column in a fact table instead of a Calendar.&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#000080"&gt;"&lt;EM&gt;Started" is the date of this issue submission - I now have created the Calendar table and created a relationship between Table.started and Calendar.date.&amp;nbsp;&amp;nbsp;&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#000080"&gt;&lt;EM&gt;I also realise now that I don't seem to need the runnit total measure ontop of this measure you are helping me with since it seems to be giving me a total.&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;3. Time-intel functions work properly only on proper Calendars.&lt;BR /&gt;&lt;BR /&gt;4. When a measure depends on Calendar, you have to use the Calendar when showing values and calculating time-dependent values. You either cannot use any other columns or you have to know what and why you are doing what you're doing.&lt;BR /&gt;&lt;BR /&gt;5. No columns from a fact table can be exposed. They must be hidden. Slicing can only be done via dimensions. If you don't do this, sooner or later you'll create a monster, hard to understand and hard to code against.&lt;BR /&gt;&lt;BR /&gt;6. Your running total (from the beginning of time) is not what it should be and it'll probably never be because the measure [Open Issues] is dependent on DATESYTD function, so it'll always return data for the latest currently visible year.&lt;BR /&gt;&lt;BR /&gt;7. Which field is the Calendar joining to the fact table on?&lt;BR /&gt;&lt;BR /&gt;In a word, I think (from what you've shown) many things are incorrect here.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2020 03:09:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1124868#M16608</guid>
      <dc:creator>Surfacescan</dc:creator>
      <dc:date>2020-05-28T03:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: Running total of open issues</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1124882#M16609</link>
      <description>&lt;P&gt;I know this is a bit of a wild example, however from the table below - I would expect the daily count of open issues to never exceed 3 because there are only 3 uers (key = phone number) who are able to open a ticket.&amp;nbsp; And one user can only have one ticket open at any given time.&amp;nbsp; So if they appear to be opening more tickets - the ceiling should be one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And when one&amp;nbsp; continually closes his ticket (false or blank) it should only decrement for that user.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so on May 7th and May 8th below, the daily running total should remain at 2 because users 111 and 222 still have open tickets, even though 333 had closed his twice on two days.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2020 03:18:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1124882#M16609</guid>
      <dc:creator>Surfacescan</dc:creator>
      <dc:date>2020-05-28T03:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Running total of open issues</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1128063#M16677</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;- thank you for all the help you've given.&amp;nbsp; If you get a chance to review the updated info I've provided about the functionality I want to achieve with this measure, I would appreciate it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks - I would love to resolve this, with a bit more help from you on the measure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 02:31:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1128063#M16677</guid>
      <dc:creator>Surfacescan</dc:creator>
      <dc:date>2020-05-29T02:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: Running total of open issues</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1128433#M16681</link>
      <description>I'll have a look at this later today. I'm right now in the process of changing jobs and this is why I'm a bit short of time... Sorry.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D</description>
      <pubDate>Fri, 29 May 2020 06:34:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1128433#M16681</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-29T06:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: Running total of open issues</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1129739#M16715</link>
      <description>&lt;P&gt;Wow - all the best in your transition!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 16:19:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1129739#M16715</guid>
      <dc:creator>Surfacescan</dc:creator>
      <dc:date>2020-05-29T16:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: Running total of open issues</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1130060#M16735</link>
      <description>&lt;P&gt;Hi there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your wishes &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; I've already made the switch.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've looked at your posts... I think for the open issues you need a different measure. Such a measure should not depend on DATESYTD. But I can't really help because I can't see the whole model. I think your Calendar should be joined to the Started field in the fact table and this field therefore should never be used to slice by. &lt;STRONG&gt;No field from a fact table should ever be used to slice by it.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;// Open issues tries to calculate open issues
// in the current period of time. It might or might
// not work correctly depending on your definitions
// of what an open issue is and how to calculate it.
// But I don't really know the full problem so I can
// only give you some guidance.
[Open Issues] =
	VAR __allIssues =
	    calculate(
			COUNT ( 'FactTable'[Phone] ),
			// Again, you should have [Open Tent Issues]
			// either in a dimension and then it would
			// be exposed and you'd need to use KEEPFILTERS
			// or it should be hidden and part of the FactTable
			// in which case you should not expose it and
			// remove KEEPFILTERS. Currently, you have a mix
			// that is the worst thing you can do, even though
			// it'll work correctly from the functional point
			// of view.
			KEEPFILTERS( 'FactTable'[Open Tent Issues] )
	)
	VAR __resolvedIssues =
	     calculate(
	         COUNT ( 'FactTable'[Phone] ),
	         // Same remark as above applies.
	         KEEPFILTERS( NOT( 'FactTable'[Open Tent Issues] ) )
	     )
	
	VAR __openIssues = __allIssues - __resolvedIssues
	VAR __openIssuesExist = 
		divide( __openIssues &amp;gt; 0, __openIssues &amp;gt; 0 )
	RETURN
		__openIssues * __openIssuesExist
		
		
// This is like a RT on the Calendar
// dimension but only throughout the year.
// It's just a Year-To-Date calculation.
[Open Issues YTD] =
	CALCULATE(
		[Open Issues],
		DATESYTD( Calendar[Date] )
	)
	
// This is a RT from beginning of time.
[Open Issues RT (absolute)] =
	CALCULATE(
		[Open Issues],
		Calendar[Date] &amp;lt;= MAX( Calendar[Date] )
	)
	
// This is a running total throughout selected
// periods of time from Calendar and please remember
// that a measure that uses ALLSELECTED must never
// ever be used in a different measure that does
// iteration. NEVER.
[Open Issues RT (relative)] =
	CALCULATE(
		[Open Issues],
		KEEPFILTERS( Calendar[Date] &amp;lt;= MAX( Calendar[Date] ) ),
		ALLSELECTED( 'Calendar' )
	)
	
// Please note that you should not use columns
// from your fact table to slice and dice. If you
// do, you'll be shooting yourself in the foot.&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best&lt;BR /&gt;D&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 19:22:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-of-open-issues/m-p/1130060#M16735</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-29T19:22:14Z</dc:date>
    </item>
  </channel>
</rss>

