<?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: Tickets created after the join date. in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-created-after-the-join-date/m-p/2666260#M79268</link>
    <description>&lt;P&gt;Also, please provide more than one row of sample data.&lt;/P&gt;</description>
    <pubDate>Thu, 28 Jul 2022 01:42:19 GMT</pubDate>
    <dc:creator>AUaero</dc:creator>
    <dc:date>2022-07-28T01:42:19Z</dc:date>
    <item>
      <title>Tickets created after the join date.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-created-after-the-join-date/m-p/2665306#M79186</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to find a way I can create a report of tickets created after their joiner date.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a master sheet with the following columns needed to create a solution,&lt;/P&gt;&lt;P&gt;Key (which is the ticket number),&amp;nbsp; Created Date, Joiner Date.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This master list includes all tickets like service requests, indicents, and Joiner Forms. Not all tickets have joiner dates, only the tickets that are joiner forms.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jul 2022 14:31:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-created-after-the-join-date/m-p/2665306#M79186</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-27T14:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: Tickets created after the join date.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-created-after-the-join-date/m-p/2665611#M79228</link>
      <description>&lt;P&gt;Sample data from your master sheet would be helpful.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jul 2022 16:35:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-created-after-the-join-date/m-p/2665611#M79228</guid>
      <dc:creator>AUaero</dc:creator>
      <dc:date>2022-07-27T16:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: Tickets created after the join date.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-created-after-the-join-date/m-p/2665628#M79229</link>
      <description>&lt;P&gt;I'm making some assumptions here on what your data actually looks like - mainly assuming that tickets are entered for various customers or users or some other entity.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;If your data looks something like the data above, this measure should get you what you want:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;# Tickets Created After Joiner Date = 
VAR tbl = 
ADDCOLUMNS(
	SUMMARIZE(
	    Tickets,
	    Tickets[CustomerNum],
	    Tickets[TicketNumber],
	    Tickets[CreatedDate],
	    Tickets[Type],
	    "Joiner_Date", 	CALCULATE(
	    					MINX(
			    				Tickets, 
	    						Tickets[JoinerDate]
	    					),
	    					ALL(Tickets),
	    					VALUES(tickets[CustomerNum])
	    				)
	),
	"AfterJoinerFlag", 	IF(
							[CreatedDate] &amp;gt;= [Joiner_Date] &amp;amp;&amp;amp; [Type] &amp;lt;&amp;gt; "Joiner",
							1,
							0
						)
)

RETURN
SUMX(
    tbl,
    [AfterJoinerFlag]
)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 27 Jul 2022 16:43:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-created-after-the-join-date/m-p/2665628#M79229</guid>
      <dc:creator>AUaero</dc:creator>
      <dc:date>2022-07-27T16:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: Tickets created after the join date.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-created-after-the-join-date/m-p/2665776#M79235</link>
      <description>&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Key&lt;/TD&gt;&lt;TD&gt;Summary&lt;/TD&gt;&lt;TD&gt;Created&lt;/TD&gt;&lt;TD&gt;Issue Type&lt;/TD&gt;&lt;TD&gt;Joiner Start Date&lt;/TD&gt;&lt;TD&gt;Reporter&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;SR1-6934&lt;/TD&gt;&lt;TD&gt;Joiner BOB&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;7/25/2022&lt;/TD&gt;&lt;TD&gt;Joiner&lt;/TD&gt;&lt;TD&gt;8/2/2022&lt;/TD&gt;&lt;TD&gt;Lisa Helms&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Wed, 27 Jul 2022 17:39:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-created-after-the-join-date/m-p/2665776#M79235</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-27T17:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Tickets created after the join date.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-created-after-the-join-date/m-p/2665811#M79238</link>
      <description>&lt;P&gt;I do not have a Customer Num, I get an error because of this segmentation&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;ALL(Tickets),
	    					VALUES(tickets[CustomerNum])&lt;/PRE&gt;&lt;P&gt;(I used Ticket Number) but since it is not a numberical data type, it gives an error.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jul 2022 17:48:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-created-after-the-join-date/m-p/2665811#M79238</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-27T17:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: Tickets created after the join date.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-created-after-the-join-date/m-p/2665880#M79241</link>
      <description>&lt;P&gt;So, a count of all tickets created after "Joiner Start Date" by "Reporter"?&amp;nbsp; Is that the requirement?&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jul 2022 18:30:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-created-after-the-join-date/m-p/2665880#M79241</guid>
      <dc:creator>AUaero</dc:creator>
      <dc:date>2022-07-27T18:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: Tickets created after the join date.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-created-after-the-join-date/m-p/2666260#M79268</link>
      <description>&lt;P&gt;Also, please provide more than one row of sample data.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2022 01:42:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-created-after-the-join-date/m-p/2666260#M79268</guid>
      <dc:creator>AUaero</dc:creator>
      <dc:date>2022-07-28T01:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: Tickets created after the join date.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-created-after-the-join-date/m-p/2672571#M79749</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try:&lt;/P&gt;
&lt;P&gt;First, create a measure:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Flag = IF(MAX('Table'[Joiner Start Date])&amp;lt;MAX('Table'[Created])&amp;amp;&amp;amp;MAX('Table'[Issue Type])="Joiner",1,0)&lt;/LI-CODE&gt;
&lt;P&gt;Then apply it to the visual:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use the visual level filter:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Final output:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this is not what you want, please provide me with more details about your table and your problem or share me with your pbix file after &lt;STRONG&gt;removing sensitive data&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;Refer to:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FCommunity-Blog%2FHow-to-provide-sample-data-in-the-Power-BI-Forum%2Fba-p%2F963216&amp;amp;data=05%7C01%7Cv-jianboli%40microsoft.com%7Cd07496a2caef4c14ee5d08da6e13a57f%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637943327917507206%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;amp;sdata=qa2KRhweo4gIMPLhto3MMG3FZFZDgaND7M32AxCMfG4%3D&amp;amp;reserved=0" target="_blank"&gt;How to provide sample data in the Power BI Forum&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FCommunity-Blog%2FHow-to-Get-Your-Question-Answered-Quickly%2Fba-p%2F38490&amp;amp;data=05%7C01%7Cv-jianboli%40microsoft.com%7Cd07496a2caef4c14ee5d08da6e13a57f%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637943327917507206%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;amp;sdata=fQIsKU%2Bj99m4YA%2FEKMb0PR%2F89vUPWqb6r5QLdZRFAGU%3D&amp;amp;reserved=0" target="_blank"&gt;How to Get Your Question Answered Quickly&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Jianbo Li&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 10:09:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-created-after-the-join-date/m-p/2672571#M79749</guid>
      <dc:creator>v-jianboli-msft</dc:creator>
      <dc:date>2022-08-01T10:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: Tickets created after the join date.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-created-after-the-join-date/m-p/2680331#M80255</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it. Or if you are still confused about it, please provide me with more details about your table and your problem or share me with your pbix file after&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;removing sensitive data.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Refer to:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank" rel="noopener"&gt;How to provide sample data in the Power BI Forum&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank" rel="noopener"&gt;How to Get Your Question Answered Quickly&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Jianbo Li&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Aug 2022 02:17:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Tickets-created-after-the-join-date/m-p/2680331#M80255</guid>
      <dc:creator>v-jianboli-msft</dc:creator>
      <dc:date>2022-08-04T02:17:28Z</dc:date>
    </item>
  </channel>
</rss>

