<?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: checking if multiple training modules are complete and mark as completed in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1870127#M40070</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="193114" data-lia-user-login="drwinny" class="lia-mention lia-mention-user"&gt;drwinny&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for sharing.&lt;/P&gt;&lt;P&gt;I am not sure how your desired outcome looks like, but please check the below picture and the link down below.&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.dropbox.com/s/ubxkzfnr67rioom/Training%20Example%20%282%29.pbix?dl=0" target="_self"&gt;https://www.dropbox.com/s/ubxkzfnr67rioom/Training%20Example%20%282%29.pbix?dl=0&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 28 May 2021 13:34:03 GMT</pubDate>
    <dc:creator>Jihwan_Kim</dc:creator>
    <dc:date>2021-05-28T13:34:03Z</dc:date>
    <item>
      <title>checking if multiple training modules are complete and mark as completed</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1860286#M39843</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to check if a user has passed multiple training courses or not and then return yes/no, true/false answer&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the example joe bloggs1 did not complete all the training so that would be false, joe bloggs2 did pass all the training so I need to return true.&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;Not really sure of the best way to do this, I have been looking for the answer but I am just confusing myself.&lt;/P&gt;&lt;P&gt;Any guidance on how to achieve this would really help. (sample file below)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sean.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="My Samples" href="https://drive.google.com/drive/folders/1JuZl4BP52aPdzO73cCKAPdGDZC36zeXO?usp=sharing" target="_self"&gt;Sample Files&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 May 2021 12:49:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1860286#M39843</guid>
      <dc:creator>drwinny</dc:creator>
      <dc:date>2021-05-24T12:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: checking if multiple training modules are complete and mark as completed</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1860323#M39845</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="193114" data-lia-user-login="drwinny" class="lia-mention lia-mention-user"&gt;drwinny&lt;/a&gt; , Try a new column like &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;New column = &lt;BR /&gt;if( countx(filter(Table, [UserName] =earlier([UserName])), [Training Code]) = countx(filter(Table, [UserName] =earlier([UserName]) &amp;amp;&amp;amp; [passed] =True()), [Training Code]) , true(), false())&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;true() is for boolean true. else you can use = "True"&lt;/P&gt;</description>
      <pubDate>Mon, 24 May 2021 13:11:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1860323#M39845</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2021-05-24T13:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: checking if multiple training modules are complete and mark as completed</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1860339#M39846</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="193114" data-lia-user-login="drwinny" class="lia-mention lia-mention-user"&gt;drwinny&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please check the link down below.&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;&lt;STRONG&gt;&lt;EM&gt;Pass All Training Measure =&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;EM&gt;VAR alltraining =&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;CALCULATETABLE ( VALUES ( Sheet1[Training Code] ), ALL ( Sheet1 ) )&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;VAR currentuserpasstraining =&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;SUMMARIZE (&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;FILTER (&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;ALL ( Sheet1 ),&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Sheet1[User Name] = MAX ( Sheet1[User Name] )&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;amp;&amp;amp; Sheet1[Passed] = TRUE ()&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;),&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Sheet1[Training Code]&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;RETURN&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;IF (&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;COUNTROWS ( alltraining ) &amp;lt;= COUNTROWS ( currentuserpasstraining ),&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;"YES",&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;"NO"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.dropbox.com/s/sqipj7ljvhof7ja/Training%20Example.pbix?dl=0" target="_self"&gt;https://www.dropbox.com/s/sqipj7ljvhof7ja/Training%20Example.pbix?dl=0&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="”calibri" color="”#0000FF”"&gt;&lt;STRONG&gt;Hi, My name is Jihwan Kim. &lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="”calibri" color="”#0000FF”"&gt;&lt;STRONG&gt;If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up. &lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="”calibri" color="”#0000FF”"&gt;Linkedin: linkedin.com/in/jihwankim1975/&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="”calibri" color="”#0000FF”"&gt;Twitter: twitter.com/Jihwan_JHKIM&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 May 2021 13:18:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1860339#M39846</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2021-05-24T13:18:15Z</dc:date>
    </item>
    <item>
      <title>Re: checking if multiple training modules are complete and mark as completed</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1860356#M39847</link>
      <description>&lt;P&gt;Thanks, both, I will give them both a try&lt;/P&gt;</description>
      <pubDate>Mon, 24 May 2021 13:23:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1860356#M39847</guid>
      <dc:creator>drwinny</dc:creator>
      <dc:date>2021-05-24T13:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: checking if multiple training modules are complete and mark as completed</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1870041#M40061</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp;thank you very much the suggested code does work very well with my test data but it seems to have trouble with my actual data. I have updated my sample data with a few false and not started rows to try and show what's happening.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;This is the measure:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Pass All Training Measure = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR alltraining =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATETABLE ( VALUES ( Sheet1[Training Code] ), ALL (Sheet1[Training Name]) )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR currentuserpasstraining =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SUMMARIZE (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;FILTER (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ALL ( Sheet1 ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Sheet1[User Name] = MAX ( Sheet1[User Name] )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;amp;&amp;amp; Sheet1[Passed] = "True"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Sheet1[Training Code]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;COUNTROWS ( alltraining ) &amp;lt;= COUNTROWS ( currentuserpasstraining ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"YES",&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"NO"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;For some reason, people have completed the training twice for different companies and can have different values in the passed field (not assigned, false, true.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Any ideas to solve this extra problem?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Many thanks for taking the time to help me, it's really appreciated&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Sean.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 28 May 2021 12:54:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1870041#M40061</guid>
      <dc:creator>drwinny</dc:creator>
      <dc:date>2021-05-28T12:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: checking if multiple training modules are complete and mark as completed</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1870048#M40062</link>
      <description>&lt;P&gt;Sorry, the measure is:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Pass All Training Measure = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR alltraining =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATETABLE ( VALUES ( Sheet1[Training Code] ), ALL (Sheet1) )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR currentuserpasstraining =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SUMMARIZE (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;FILTER (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ALL ( Sheet1 ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Sheet1[User Name] = MAX ( Sheet1[User Name] )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;amp;&amp;amp; Sheet1[Passed] = "True"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Sheet1[Training Code]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;COUNTROWS ( alltraining ) &amp;lt;= COUNTROWS ( currentuserpasstraining ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"YES",&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"NO"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 28 May 2021 12:56:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1870048#M40062</guid>
      <dc:creator>drwinny</dc:creator>
      <dc:date>2021-05-28T12:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: checking if multiple training modules are complete and mark as completed</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1870079#M40066</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="193114" data-lia-user-login="drwinny" class="lia-mention lia-mention-user"&gt;drwinny&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your feedback.&lt;/P&gt;&lt;P&gt;Please share your sample pbix file's link here, then I can try to look into it to find out what is the difference between the previous sample and the current sample and to find out which part to rewrite in the measure.&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 13:11:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1870079#M40066</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2021-05-28T13:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: checking if multiple training modules are complete and mark as completed</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1870085#M40067</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp;thank you the sample files are below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/drive/folders/1JuZl4BP52aPdzO73cCKAPdGDZC36zeXO" target="_self"&gt;Sample Files&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 13:14:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1870085#M40067</guid>
      <dc:creator>drwinny</dc:creator>
      <dc:date>2021-05-28T13:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: checking if multiple training modules are complete and mark as completed</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1870127#M40070</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="193114" data-lia-user-login="drwinny" class="lia-mention lia-mention-user"&gt;drwinny&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for sharing.&lt;/P&gt;&lt;P&gt;I am not sure how your desired outcome looks like, but please check the below picture and the link down below.&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.dropbox.com/s/ubxkzfnr67rioom/Training%20Example%20%282%29.pbix?dl=0" target="_self"&gt;https://www.dropbox.com/s/ubxkzfnr67rioom/Training%20Example%20%282%29.pbix?dl=0&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 13:34:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1870127#M40070</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2021-05-28T13:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: checking if multiple training modules are complete and mark as completed</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1870185#M40074</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my real data, I need to know if each user has passed 10 specific training courses so they are can move forward to additional training. But the data from the training platform is messy sometimes the same training has multiple values in the passed column it can be not assigned, passed, or failed.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;In my sample data:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this case, everything is OK: the user has passed all training courses:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;In this case: the user has worked for two companies, for company C everything is ok.&lt;/P&gt;&lt;P&gt;Company B the user has passed all 7 training courses but "training A" has a "Not Assigned" and "passed" condition so this should be marked as yes or passed in the measure but it is shown as no or not passed&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does this make sense?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sean.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 13:54:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1870185#M40074</guid>
      <dc:creator>drwinny</dc:creator>
      <dc:date>2021-05-28T13:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: checking if multiple training modules are complete and mark as completed</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1870310#M40080</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;is it the same sample?&amp;nbsp; I cannot see the user name BOX JUMP.&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 14:41:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1870310#M40080</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2021-05-28T14:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: checking if multiple training modules are complete and mark as completed</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1870315#M40082</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp;it should be but I have uploaded it again just to make sure&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 14:49:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/checking-if-multiple-training-modules-are-complete-and-mark-as/m-p/1870315#M40082</guid>
      <dc:creator>drwinny</dc:creator>
      <dc:date>2021-06-01T14:49:20Z</dc:date>
    </item>
  </channel>
</rss>

