<?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: How can I color format one table with other tables values. in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-color-format-one-table-with-other-tables-values/m-p/2454443#M66176</link>
    <description>&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;HI&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="376597" data-lia-user-login="aLe21" class="lia-mention lia-mention-user"&gt;aLe21&lt;/a&gt;,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;You can get the current user id and use it as conditions to use it to lookup the 'status' table to confirm the corresponding&amp;nbsp;training status, then return the color code and apply it to the conditional formatting feature.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;A href="https://docs.microsoft.com/en-us/power-bi/create-reports/desktop-conditional-table-formatting#color-by-color-values" target="_blank"&gt;Conditional table formatting in Power BI Desktop - Power BI | Microsoft Docs&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;If you are confused about the coding formula, please share some dummy data to test.&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;A href="http://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;How to Get Your Question Answered Quickly&amp;nbsp;&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Xiaoxin Sheng&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 13 Apr 2022 09:19:44 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-04-13T09:19:44Z</dc:date>
    <item>
      <title>How can I color format one table with other tables values.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-color-format-one-table-with-other-tables-values/m-p/2444266#M65555</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Im building a training report, in which i have which trainings each person of the company took.&lt;/P&gt;&lt;P&gt;According to the persons role, the different trainings they should take.&lt;/P&gt;&lt;P&gt;So, in conclusion, i have a table with the modules they took and another table with the modules they should take. I would like to colour the table like this (in green the modules taken and in red the modules they still havent done)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The modules that are on the left table should be coloured in green on the 2nd table.&lt;/P&gt;&lt;P&gt;All this is filtered by person.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope its clear.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Apr 2022 19:21:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-color-format-one-table-with-other-tables-values/m-p/2444266#M65555</guid>
      <dc:creator>aLe21</dc:creator>
      <dc:date>2022-04-07T19:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: How can I color format one table with other tables values.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-color-format-one-table-with-other-tables-values/m-p/2444599#M65572</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="376597" data-lia-user-login="aLe21" class="lia-mention lia-mention-user"&gt;aLe21&lt;/a&gt; , Not ver clear. But you can create color measure based on condition and use that in conditional formatting using field value options &lt;/P&gt;
&lt;P&gt;example&lt;/P&gt;
&lt;P&gt;if(FIRSTNONBLANK('Table'[Value],"true")= "true","green","red")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if(FIRSTNONBLANK(date[date],blank())= today(),"green","red")&lt;/P&gt;
&lt;P&gt;How to do conditional formatting by measure and apply it on pie? : &lt;A href="https://youtu.be/RqBb5eBf_I4" target="_blank"&gt;https://youtu.be/RqBb5eBf_I4&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2022 01:36:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-color-format-one-table-with-other-tables-values/m-p/2444599#M65572</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-04-08T01:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: How can I color format one table with other tables values.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-color-format-one-table-with-other-tables-values/m-p/2446408#M65672</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp;thanks for your reply, couldnt make it work still.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me try to explain it in a different way.&lt;/P&gt;&lt;P&gt;I have 1 table with tasks done and another table with tasks should be done.&lt;/P&gt;&lt;P&gt;So, when i select one person, i want to see on the table with all the tasks which one of those have been done. And thats what i would like to see quickly with colours, on red what tasks havent been done and on green which ones yes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2022 15:51:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-color-format-one-table-with-other-tables-values/m-p/2446408#M65672</guid>
      <dc:creator>aLe21</dc:creator>
      <dc:date>2022-04-08T15:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: How can I color format one table with other tables values.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-color-format-one-table-with-other-tables-values/m-p/2446591#M65680</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="376597" data-lia-user-login="aLe21" class="lia-mention lia-mention-user"&gt;aLe21&lt;/a&gt; ,&lt;BR /&gt;Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2022 17:17:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-color-format-one-table-with-other-tables-values/m-p/2446591#M65680</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-04-08T17:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: How can I color format one table with other tables values.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-color-format-one-table-with-other-tables-values/m-p/2454443#M66176</link>
      <description>&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;HI&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="376597" data-lia-user-login="aLe21" class="lia-mention lia-mention-user"&gt;aLe21&lt;/a&gt;,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;You can get the current user id and use it as conditions to use it to lookup the 'status' table to confirm the corresponding&amp;nbsp;training status, then return the color code and apply it to the conditional formatting feature.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;A href="https://docs.microsoft.com/en-us/power-bi/create-reports/desktop-conditional-table-formatting#color-by-color-values" target="_blank"&gt;Conditional table formatting in Power BI Desktop - Power BI | Microsoft Docs&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;If you are confused about the coding formula, please share some dummy data to test.&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;A href="http://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;How to Get Your Question Answered Quickly&amp;nbsp;&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Xiaoxin Sheng&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Apr 2022 09:19:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-can-I-color-format-one-table-with-other-tables-values/m-p/2454443#M66176</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-04-13T09:19:44Z</dc:date>
    </item>
  </channel>
</rss>

