<?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: Star Ratings in Quick Measures Gallery</title>
    <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/1995789#M730</link>
    <description>&lt;P&gt;hi&lt;/P&gt;
&lt;P&gt;This is working great but using slicer it doesnt work.&lt;/P&gt;
&lt;P&gt;i am trying to slice based on some user names but rating doesnt work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;i am slicing on column"Name"&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help please.&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Stars = &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;SPAN&gt;REPT(UNICHAR(9733), CALCULATE(AVERAGE('PowerBI vwtable'[starcolumn]),ALLEXCEPT('usertable',usertable[Name])))&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;amp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;SPAN&gt;REPT(UNICHAR(9734), CALCULATE(5-AVERAGE('PowerBI vwtable'[starcolumn]),ALLEXCEPT('usertable',usertable[Name])))&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Many thanks in Advance&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;</description>
    <pubDate>Tue, 03 Aug 2021 16:02:14 GMT</pubDate>
    <dc:creator>bideveloper555</dc:creator>
    <dc:date>2021-08-03T16:02:14Z</dc:date>
    <item>
      <title>Star Ratings</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/166903#M12</link>
      <description>&lt;P&gt;This quick measure displays a score or rating out of five as a series of filled and unfilled stars. In the example in the report, there is a table called restaurants and a numeric column on that table called Score that contains a rating out of five. This measure takes the value in the Score column and displays the same number of filled stars (using the DAX Unichar() function) followed by whatever number of unfilled stars are needed to make the total number of stars up to five.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DAX:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Stars =&lt;/P&gt;
&lt;P&gt;REPT(UNICHAR(9733), AVERAGE('Restaurants'[Score]))&lt;/P&gt;
&lt;P&gt;&amp;amp;&lt;/P&gt;
&lt;P&gt;REPT(UNICHAR(9734), 5-AVERAGE('Restaurants'[Score]))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For more details and other examples of how you can use this technique, see my blog post on the subject at:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blog.crossjoin.co.uk/2017/04/11/the-dax-unichar-function-and-how-to-use-it-in-measures-for-data-visualisation/" target="_self"&gt;https://blog.crossjoin.co.uk/2017/04/11/the-dax-unichar-function-and-how-to-use-it-in-measures-for-data-visualisation/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="reportid hidden"&gt;eyJrIjoiYzYzZmFkMDEtZmFhZi00MzJlLWE2NGEtZGE3ZjFiOTRiYzRmIiwidCI6ImEyODQ0OTIzLTEyMTgtNGQzNi1hN2M1LTk1ODJhMzhhNGU1ZCIsImMiOjh9&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Apr 2017 09:19:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/166903#M12</guid>
      <dc:creator>cwebb</dc:creator>
      <dc:date>2017-04-30T09:19:03Z</dc:date>
    </item>
    <item>
      <title>Re: Star Ratings</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/212759#M30</link>
      <description>&lt;P&gt;Hello Everyone,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have created quick measure "Star Rating" based on sales value but I dont the Value for highest star rating. Sales value either be Million or Billion or less.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How I want to set&amp;nbsp;&lt;STRONG&gt;MAX_RATED_VALUE&amp;nbsp;&lt;/STRONG&gt;dynamic based on sales? Can you please help me on this ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sales_LCD star rating =&lt;BR /&gt;VAR __MAX_NUMBER_OF_STARS = 5&lt;BR /&gt;VAR __MIN_RATED_VALUE = 0&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;VAR __MAX_RATED_VALUE = 1000000&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;VAR __BASE_VALUE = SUM('Pfizer Champix QTR'[Sales_LCD])&lt;BR /&gt;VAR __NORMALIZED_BASE_VALUE =&lt;BR /&gt;MIN(&lt;BR /&gt;MAX(&lt;BR /&gt;DIVIDE(&lt;BR /&gt;__BASE_VALUE - __MIN_RATED_VALUE,&lt;BR /&gt;__MAX_RATED_VALUE - __MIN_RATED_VALUE&lt;BR /&gt;),&lt;BR /&gt;0&lt;BR /&gt;),&lt;BR /&gt;1&lt;BR /&gt;)&lt;BR /&gt;VAR __STAR_RATING = ROUND(__NORMALIZED_BASE_VALUE * __MAX_NUMBER_OF_STARS, 0)&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;NOT ISBLANK(__BASE_VALUE),&lt;BR /&gt;REPT(UNICHAR(9733), __STAR_RATING)&lt;BR /&gt;&amp;amp; REPT(UNICHAR(9734), __MAX_NUMBER_OF_STARS - __STAR_RATING)&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2017 07:20:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/212759#M30</guid>
      <dc:creator>mdaamirkhan</dc:creator>
      <dc:date>2017-07-17T07:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: Star Ratings</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/216483#M31</link>
      <description>&lt;P&gt;You need to create another measure in your report that returns the max value, and then replace the hardcoded max value (1000000 in your example) with the name of the measure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, for example, if you created a measure called [Max Sales] that returned the maximum sales visible on your report (this might be quite difficult to do though...) then the highlighted line would be:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;VAR __MAX_RATED_VALUE = [Max Sales]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jul 2017 09:56:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/216483#M31</guid>
      <dc:creator>cwebb</dc:creator>
      <dc:date>2017-07-21T09:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Star Ratings</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/216499#M32</link>
      <description>&lt;P&gt;I have &lt;SPAN&gt;a measure called [Max Sales]&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Query is ok or not&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;MaxSales = MAX('Pfizer Champix QTR'[Sales_LCD])&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jul 2017 10:23:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/216499#M32</guid>
      <dc:creator>mdaamirkhan</dc:creator>
      <dc:date>2017-07-21T10:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: Star Ratings</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/217105#M33</link>
      <description>&lt;P&gt;I already tried that its showing 5-stars in all sales but where sales vlue is 0 it showing not stars.&lt;/P&gt;</description>
      <pubDate>Sun, 23 Jul 2017 14:09:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/217105#M33</guid>
      <dc:creator>mdaamirkhan</dc:creator>
      <dc:date>2017-07-23T14:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: Star Ratings</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/217614#M39</link>
      <description>&lt;P&gt;The expression&amp;nbsp;&lt;SPAN&gt;MAX('Pfizer Champix QTR'[Sales_LCD]) will give you the maximum value found in a row in the 'Pfizer Champix QTR' table in your data model, which is not necessarily the maximum value displayed in your visualisation. If you add it to your table as a separate column, does it give you the values you expect? My guess is that you'll need to use the MAXX() function in a more complex measure, and not the MAX() function here:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://msdn.microsoft.com/en-us/library/ee634576.aspx" target="_blank"&gt;https://msdn.microsoft.com/en-us/library/ee634576.aspx&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Chris&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jul 2017 12:43:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/217614#M39</guid>
      <dc:creator>cwebb</dc:creator>
      <dc:date>2017-07-24T12:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Star Ratings</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/217818#M41</link>
      <description>&lt;P&gt;i found that solution and thanks for helping me&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jul 2017 15:43:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/217818#M41</guid>
      <dc:creator>mdaamirkhan</dc:creator>
      <dc:date>2017-07-24T15:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: Star Ratings</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/218596#M45</link>
      <description>&lt;P&gt;Hi chris, if the avg rating is 4.5 or 3.5 will it show half filled stars? or how can we do it.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jul 2017 13:18:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/218596#M45</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-25T13:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: Star Ratings</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/218796#M47</link>
      <description>&lt;P&gt;As far as I can see there's isn't a unicode character for a half-filled star, so it would not be possible to use this technique to display half-filled stars.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jul 2017 18:44:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/218796#M47</guid>
      <dc:creator>cwebb</dc:creator>
      <dc:date>2017-07-25T18:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: Star Ratings</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/388608#M119</link>
      <description>&lt;P&gt;A solution would be to:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Create an image for each star rating you liked displayed ( including half ratings).&lt;/P&gt;
&lt;P&gt;2. Upload image to a URL.&lt;/P&gt;
&lt;P&gt;3. Create calculated column in data based on rating.&lt;/P&gt;
&lt;P&gt;4. Add Column by example that include Properly named image URL column to reflect your rating image.&lt;/P&gt;
&lt;P&gt;5. Change Poperties of URL Column under Modeling to image url.&lt;/P&gt;
&lt;P&gt;6. Use you new URL image column in the table to show the ratings&lt;/P&gt;</description>
      <pubDate>Tue, 03 Apr 2018 10:53:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/388608#M119</guid>
      <dc:creator>safadig</dc:creator>
      <dc:date>2018-04-03T10:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: Star Ratings</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/646674#M324</link>
      <description>&lt;P&gt;Check out this short Youtube video as well on how to create quick measure:&lt;/P&gt;
&lt;P&gt;&lt;A title="Power BI Quick Measures" href="https://youtu.be/PLIK-sVrpWA" target="_blank" rel="noopener"&gt;Youtube video: Power BI Quick Measures&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Mar 2019 06:00:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/646674#M324</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-03-16T06:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: Star Ratings</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/722623#M354</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="79" data-lia-user-login="cwebb" class="lia-mention lia-mention-user"&gt;cwebb&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This seems to provide a half star. Is it possible to use this for a half star rating?&amp;nbsp;&lt;A href="https://www.fileformat.info/info/unicode/char/2bea/index.htm" target="_blank"&gt;https://www.fileformat.info/info/unicode/char/2bea/index.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jun 2019 13:55:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/722623#M354</guid>
      <dc:creator>dcresp</dc:creator>
      <dc:date>2019-06-24T13:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: Star Ratings</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/987820#M435</link>
      <description>&lt;P&gt;can we chnage the Colours of stars ?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2020 00:16:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/987820#M435</guid>
      <dc:creator>skorpionaa</dc:creator>
      <dc:date>2020-03-24T00:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: Star Ratings</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/1780792#M691</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="217234" data-lia-user-login="skorpionaa" class="lia-mention lia-mention-user"&gt;skorpionaa&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Were you able to find a solution (colored star)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Apr 2021 17:14:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/1780792#M691</guid>
      <dc:creator>justindoh</dc:creator>
      <dc:date>2021-04-12T17:14:08Z</dc:date>
    </item>
    <item>
      <title>Re: Star Ratings</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/1995789#M730</link>
      <description>&lt;P&gt;hi&lt;/P&gt;
&lt;P&gt;This is working great but using slicer it doesnt work.&lt;/P&gt;
&lt;P&gt;i am trying to slice based on some user names but rating doesnt work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;i am slicing on column"Name"&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help please.&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Stars = &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;SPAN&gt;REPT(UNICHAR(9733), CALCULATE(AVERAGE('PowerBI vwtable'[starcolumn]),ALLEXCEPT('usertable',usertable[Name])))&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;amp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;SPAN&gt;REPT(UNICHAR(9734), CALCULATE(5-AVERAGE('PowerBI vwtable'[starcolumn]),ALLEXCEPT('usertable',usertable[Name])))&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Many thanks in Advance&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 03 Aug 2021 16:02:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/1995789#M730</guid>
      <dc:creator>bideveloper555</dc:creator>
      <dc:date>2021-08-03T16:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: Star Ratings</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/2061990#M762</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="79" data-lia-user-login="cwebb" class="lia-mention lia-mention-user"&gt;cwebb&lt;/a&gt;&amp;nbsp;Hi Chris&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the tool!&lt;/P&gt;
&lt;P&gt;I have a question: Is it possible to change the formula so that you get a lower star-ranking the higher the value you score. I.e. number of defects should be as low as possible and generate more stars instead of fewer.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 14:02:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/2061990#M762</guid>
      <dc:creator>levialae</dc:creator>
      <dc:date>2021-09-07T14:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Star Ratings</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/2269808#M806</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="217234" data-lia-user-login="skorpionaa" class="lia-mention lia-mention-user"&gt;skorpionaa&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, you can change the color. Below are the steps:&lt;/P&gt;
&lt;P&gt;1 - Click on the format menu.&lt;/P&gt;
&lt;P&gt;2 - Click on the Field Formatting option.&lt;/P&gt;
&lt;P&gt;3 - From the dropdown, select the rating option (or maybe the one which you have chosen while creating the rating measure).&lt;/P&gt;
&lt;P&gt;4 - Click on Font color and choose your favorite color.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Happy Learning!&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 16:04:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/2269808#M806</guid>
      <dc:creator>GhaziSalahuddin</dc:creator>
      <dc:date>2022-01-06T16:04:04Z</dc:date>
    </item>
    <item>
      <title>Re: Star Ratings</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/2269812#M807</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="293887" data-lia-user-login="justindoh" class="lia-mention lia-mention-user"&gt;justindoh&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, you can change the color. Below are the steps:&lt;/P&gt;
&lt;P&gt;1 - Click on the format menu.&lt;/P&gt;
&lt;P&gt;2 - Click on the Field Formatting option.&lt;/P&gt;
&lt;P&gt;3 - From the dropdown, select the rating option (or maybe the one which you have chosen while creating the rating measure).&lt;/P&gt;
&lt;P&gt;4 - Click on Font color and choose your favorite color.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Happy Learning!&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 16:03:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/2269812#M807</guid>
      <dc:creator>GhaziSalahuddin</dc:creator>
      <dc:date>2022-01-06T16:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: Star Ratings</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/4403533#M1161</link>
      <description>&lt;P&gt;&lt;SPAN&gt;The column of the table influences the calculation of your measure, so it is necessary to use the CALCULATE and ALL functions.&lt;BR /&gt;&lt;BR /&gt;Classification =&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;VAR __MAX_NUMBER_OF_STARS = 5&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;VAR __MIN_RATED_VALUE = CALCULATE([Measure];ALL('Table'[Column]))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;VAR __MAX_RATED_VALUE = CALCULATE([Measure];ALL('Table'[Column]))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;VAR __BASE_VALUE = [Measure]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;VAR __NORMALIZED_BASE_VALUE =&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;IF(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;__MAX_RATED_VALUE &amp;lt;&amp;gt; __MIN_RATED_VALUE;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;MIN(MAX(DIVIDE(__BASE_VALUE - __MIN_RATED_VALUE; __MAX_RATED_VALUE - __MIN_RATED_VALUE); 0); 1);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;VAR __STAR_RATING = ROUND(__NORMALIZED_BASE_VALUE * __MAX_NUMBER_OF_STARS; 0)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;IF(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;NOT ISBLANK(__BASE_VALUE);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;REPT(UNICHAR(9733); __STAR_RATING) &amp;amp; REPT(UNICHAR(9734); __MAX_NUMBER_OF_STARS - __STAR_RATING)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2025 18:17:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Star-Ratings/m-p/4403533#M1161</guid>
      <dc:creator>GU_Oliveira_SP</dc:creator>
      <dc:date>2025-02-10T18:17:51Z</dc:date>
    </item>
  </channel>
</rss>

