<?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: DAX Conditional Formatting the maximum value for each column in a Matrix in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2278243#M55671</link>
    <description>&lt;P&gt;I ended up using using a Reference of original SAP-DIRECT Table, then filtered down dates I wanted and used "Group By" in Power Query Editor, once I did that for EAM and GROUP, then I could Sum new columns by REVENUE and GP and that gave me the exact table I wanted.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From there your measure worked great. I could not figure out how to use MAX Aggregate with SUM of REV / GP, read everything I could find and my brain could not do it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway thank you for the guidance, it worked in the end!&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 11 Jan 2022 19:33:19 GMT</pubDate>
    <dc:creator>sscanlon</dc:creator>
    <dc:date>2022-01-11T19:33:19Z</dc:date>
    <item>
      <title>DAX Conditional Formatting the maximum value for each column in a Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2273685#M55392</link>
      <description>&lt;P&gt;Hi, I followed this post and video but cannot figure out a few things, hoping someone can help me figure it out.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sqlbi.com/articles/highlighting-the-minimum-and-maximum-values-in-a-power-bi-matrix/" target="_blank"&gt;https://www.sqlbi.com/articles/highlighting-the-minimum-and-maximum-values-in-a-power-bi-matrix/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Essentially, I want to do what they highlight here, but for the GP column for each of these (Cloud / Network / Security) in my image from my matrix visual.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All of the data is in a single table 'SAP-DIRECT', and the rows are [EAM] and Columns are [GROUP]&lt;/P&gt;&lt;P&gt;I am trying to show a Star Icon for largest GP, and would be a bonus to show another icon for the 2nd largest GP but not totally needed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My current measure is below, I use that for conditional formatting - Values Only - based on the measure, if = 1 etc.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One thing I have never seen explained when people show this method, what is the [Sales Amount] Measure that is called in the link above?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created one called [GPmeasure] and just use Sum for my GP value, but have no idea if that is right.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently this is what shows in the visual, no icon on any value.&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;&lt;P&gt;My current measure:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;GP LARGEST SAP-DIRECT =&lt;BR /&gt;VAR Vals =&lt;BR /&gt;CALCULATETABLE(&lt;BR /&gt;ADDCOLUMNS (&lt;BR /&gt;SUMMARIZE ( 'SAP-DIRECT', 'SAP-DIRECT'[EAM], 'SAP-DIRECT'[GROUP] ),&amp;nbsp; &lt;STRONG&gt;-- I believe I have this correct? Row first then Column?&lt;/STRONG&gt;&lt;BR /&gt;"@GPMAX", [GPmeasure]&amp;nbsp; &lt;STRONG&gt;-- This is my measure I created, see below, not sure if it is correct?&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;),&lt;BR /&gt;ALLSELECTED ()&lt;BR /&gt;)&lt;BR /&gt;VAR MinValue = MINX ( Vals, [@GPMAX] )&lt;BR /&gt;VAR MaxValue = MAXX ( Vals, [@GPMAX] )&lt;BR /&gt;VAR CurrentValue = [GPmeasure]&lt;BR /&gt;VAR Result =&lt;BR /&gt;SWITCH (&lt;BR /&gt;TRUE,&lt;BR /&gt;CurrentValue = MinValue, 1, -- 1 for MIN&lt;BR /&gt;CurrentValue = MaxValue, 2 -- 2 for MAX&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;Result&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My measure that is called by the above:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;GPmeasure = CALCULATE(SUM('SAP-DIRECT'[GP]))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;again have no idea if this is right, or needs to be SUMX?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My Conditional formatting - fairly certain this is correct&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for any help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 08 Jan 2022 19:22:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2273685#M55392</guid>
      <dc:creator>sscanlon</dc:creator>
      <dc:date>2022-01-08T19:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Conditional Formatting the maximum value for each column in a Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2274144#M55424</link>
      <description>&lt;P&gt;This seems to be generally going in the right direction. Keep in mind that your measure is computed in each of the individual contexts. Do you want the star once for the whole table, or once for each column?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please provide sanitized sample data that fully covers your issue. Paste the data into a table in your post or use one of the file services.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jan 2022 17:50:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2274144#M55424</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2022-01-09T17:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Conditional Formatting the maximum value for each column in a Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2274182#M55427</link>
      <description>&lt;P&gt;Hi, thank you, here is an idea of the data inside the table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to just show an icon once for each column (which in this case would be once for each [GROUP]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;EAM&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;REVENUE&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;GP&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;GROUP&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;John&lt;/TD&gt;&lt;TD&gt;$275&lt;/TD&gt;&lt;TD&gt;$44&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":cloud:"&gt;☁️&lt;/span&gt; Cloud&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Larry&lt;/TD&gt;&lt;TD&gt;$51,556&lt;/TD&gt;&lt;TD&gt;$5,402&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":cloud:"&gt;☁️&lt;/span&gt; Cloud&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Karl&lt;/TD&gt;&lt;TD&gt;$34,048&lt;/TD&gt;&lt;TD&gt;$5,059&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":cloud:"&gt;☁️&lt;/span&gt; Cloud&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Kathy&lt;/TD&gt;&lt;TD&gt;$6,514&lt;/TD&gt;&lt;TD&gt;$850&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":cloud:"&gt;☁️&lt;/span&gt; Cloud&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Tom&lt;/TD&gt;&lt;TD&gt;$38,528&lt;/TD&gt;&lt;TD&gt;$6,945&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":cloud:"&gt;☁️&lt;/span&gt; Cloud&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;John&lt;/TD&gt;&lt;TD&gt;$31,557&lt;/TD&gt;&lt;TD&gt;($4,097)&lt;/TD&gt;&lt;TD&gt;&lt;span class="lia-unicode-emoji" title=":globe_with_meridians:"&gt;🌐&lt;/span&gt; Network&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Larry&lt;/TD&gt;&lt;TD&gt;$3,500&lt;/TD&gt;&lt;TD&gt;$301&lt;/TD&gt;&lt;TD&gt;&lt;span class="lia-unicode-emoji" title=":globe_with_meridians:"&gt;🌐&lt;/span&gt; Network&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Karl&lt;/TD&gt;&lt;TD&gt;$152,191&lt;/TD&gt;&lt;TD&gt;$26,233&lt;/TD&gt;&lt;TD&gt;&lt;span class="lia-unicode-emoji" title=":globe_with_meridians:"&gt;🌐&lt;/span&gt; Network&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Kathy&lt;/TD&gt;&lt;TD&gt;$131,786&lt;/TD&gt;&lt;TD&gt;$16,606&lt;/TD&gt;&lt;TD&gt;&lt;span class="lia-unicode-emoji" title=":globe_with_meridians:"&gt;🌐&lt;/span&gt; Network&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Tom&lt;/TD&gt;&lt;TD&gt;$22,232&lt;/TD&gt;&lt;TD&gt;$1,795&lt;/TD&gt;&lt;TD&gt;&lt;span class="lia-unicode-emoji" title=":globe_with_meridians:"&gt;🌐&lt;/span&gt; Network&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;John&lt;/TD&gt;&lt;TD&gt;$270,091&lt;/TD&gt;&lt;TD&gt;$21,379&lt;/TD&gt;&lt;TD&gt;&lt;span class="lia-unicode-emoji" title=":locked:"&gt;🔒&lt;/span&gt; Security&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Karl&lt;/TD&gt;&lt;TD&gt;$42,710&lt;/TD&gt;&lt;TD&gt;$4,271&lt;/TD&gt;&lt;TD&gt;&lt;span class="lia-unicode-emoji" title=":locked:"&gt;🔒&lt;/span&gt; Security&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Kathy&lt;/TD&gt;&lt;TD&gt;$31,657&lt;/TD&gt;&lt;TD&gt;$4,605&lt;/TD&gt;&lt;TD&gt;&lt;span class="lia-unicode-emoji" title=":locked:"&gt;🔒&lt;/span&gt; Security&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Sun, 09 Jan 2022 18:49:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2274182#M55427</guid>
      <dc:creator>sscanlon</dc:creator>
      <dc:date>2022-01-09T18:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Conditional Formatting the maximum value for each column in a Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2274296#M55437</link>
      <description>&lt;P&gt;Like this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Of course the proper way would be to use RANKX() etc but that gets a little tricky with measures. You would also need to decide what to do with ties etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sample pbix attached.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jan 2022 01:05:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2274296#M55437</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2022-01-10T01:05:11Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Conditional Formatting the maximum value for each column in a Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2274309#M55440</link>
      <description>&lt;P&gt;Thank you so much for taking the time to do that, it looks perfect, but only shows zeros on every row in the column when I drag the measure into the visual (to test and see if I get 0, 1 or 2).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not sure what else I am doing wrong, I even cleared any filters on the visual or page etc.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Again thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jan 2022 01:24:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2274309#M55440</guid>
      <dc:creator>sscanlon</dc:creator>
      <dc:date>2022-01-10T01:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Conditional Formatting the maximum value for each column in a Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2274496#M55449</link>
      <description>&lt;P&gt;Please provide sanitized sample data that fully covers your issue.. Please show the expected outcome.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jan 2022 03:30:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2274496#M55449</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2022-01-10T03:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Conditional Formatting the maximum value for each column in a Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2274571#M55460</link>
      <description>&lt;P&gt;I am thinking it is because of our Invoice column, every Invoice is a row, and they can be + GP or - GP, let's say a credit for negative GP.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Issue is we do not put EAM name for negative GP entries / rows. So I think this is throwing off the calculation of GP and the measure.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Might be too hard to figure out, I can try to scrub some data and send to you, maybe some example rows of + and - GP.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can do tomorrow if you think that helps?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jan 2022 05:09:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2274571#M55460</guid>
      <dc:creator>sscanlon</dc:creator>
      <dc:date>2022-01-10T05:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Conditional Formatting the maximum value for each column in a Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2276412#M55576</link>
      <description>&lt;P&gt;After a little more digging, it seems like it would work if I could SUM the GP total for each EAM by GROUP.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I expanded the table more below and did not realize that each INVOICE has a unique GP, sometimes on the same date and sometimes not.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I believe the measure is grabbing the first max value and not the SUM of each EAM?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for any thoughts, I looked and it seems MAXX allows for SUM but MAX does not, I could not even call a SUM Measure with MAX, needs to be a column.&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;DATE&lt;/TD&gt;&lt;TD&gt;INVOICE&lt;/TD&gt;&lt;TD&gt;EAM&lt;/TD&gt;&lt;TD&gt;REVENUE&lt;/TD&gt;&lt;TD&gt;GP&lt;/TD&gt;&lt;TD&gt;GROUP&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;12/15/2021&lt;/TD&gt;&lt;TD&gt;10006009&lt;/TD&gt;&lt;TD&gt;Dale&lt;/TD&gt;&lt;TD&gt;$275&lt;/TD&gt;&lt;TD&gt;$44&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":cloud:"&gt;☁️&lt;/span&gt; Cloud&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;12/15/2021&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;10006010&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Harry&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;$40,299&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;$3,929&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":cloud:"&gt;☁️&lt;/span&gt; Cloud&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;12/15/2021&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;10006011&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Harry&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;$51,556&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;$5,402&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":cloud:"&gt;☁️&lt;/span&gt; Cloud&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;12/15/2021&lt;/TD&gt;&lt;TD&gt;10006012&lt;/TD&gt;&lt;TD&gt;Karl&lt;/TD&gt;&lt;TD&gt;$34,048&lt;/TD&gt;&lt;TD&gt;$5,059&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":cloud:"&gt;☁️&lt;/span&gt; Cloud&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;12/15/2021&lt;/TD&gt;&lt;TD&gt;10006013&lt;/TD&gt;&lt;TD&gt;Kathy&lt;/TD&gt;&lt;TD&gt;$6,514&lt;/TD&gt;&lt;TD&gt;$850&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":cloud:"&gt;☁️&lt;/span&gt; Cloud&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Tue, 11 Jan 2022 01:22:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2276412#M55576</guid>
      <dc:creator>sscanlon</dc:creator>
      <dc:date>2022-01-11T01:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Conditional Formatting the maximum value for each column in a Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2276439#M55577</link>
      <description>&lt;P&gt;Read about the difference between aggregators (SUM, MAX)&amp;nbsp; and iterators (SUMX, MAXX).&amp;nbsp; That will help you to decide when to apply which (very roughly aggregators work on columns while iterators work on rows).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know when you have sorted your actual requirement out. The measure I provided is only one of many possible implementations (and a very simplistic one, too). It did work for your original request, but it's perfectly fine for requirements to change during prototyping.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jan 2022 01:41:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2276439#M55577</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2022-01-11T01:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Conditional Formatting the maximum value for each column in a Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2278243#M55671</link>
      <description>&lt;P&gt;I ended up using using a Reference of original SAP-DIRECT Table, then filtered down dates I wanted and used "Group By" in Power Query Editor, once I did that for EAM and GROUP, then I could Sum new columns by REVENUE and GP and that gave me the exact table I wanted.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From there your measure worked great. I could not figure out how to use MAX Aggregate with SUM of REV / GP, read everything I could find and my brain could not do it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway thank you for the guidance, it worked in the end!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jan 2022 19:33:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Conditional-Formatting-the-maximum-value-for-each-column-in/m-p/2278243#M55671</guid>
      <dc:creator>sscanlon</dc:creator>
      <dc:date>2022-01-11T19:33:19Z</dc:date>
    </item>
  </channel>
</rss>

