<?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: Creating Index base 100 charts in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-Index-base-100-charts/m-p/4374416#M173686</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="900077" data-lia-user-login="hcova7" class="lia-mention lia-mention-user"&gt;hcova7&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is how I would write the measure.&lt;/P&gt;
&lt;P&gt;1. First create &lt;STRONG&gt;Close Average&lt;/STRONG&gt; which averages the CLOSE price over the filtered date range. The AVERAGE aggregation is not too important as this will normally be used by other measures at a daily level.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Close Average :=
AVERAGE ( Table1[CLOSE] )&lt;/LI-CODE&gt;
&lt;P&gt;2. Then create &lt;STRONG&gt;Close Latest&lt;/STRONG&gt;, which returns the value of &lt;STRONG&gt;Close Average&lt;/STRONG&gt; at the latest date within the visible values of 'Calendar'[Date]. This measure is useful when aggregating at month, quarter, year level, as it generally makes sense to show the latest index value.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Close Latest :=
LASTNONBLANKVALUE ( 'Calendar'[Date], [Close Average] )&lt;/LI-CODE&gt;
&lt;P&gt;3. Finally, create &lt;STRONG&gt;IndexBase100 Fix&lt;/STRONG&gt;:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;IndexBase100 Fix :=
VAR _BasePrice =
    CALCULATE (
        FIRSTNONBLANKVALUE ( 'Calendar'[Date], [Close Latest] ),
        ALLSELECTED ( 'Calendar' )
    )
VAR _Index100 =
    DIVIDE ( [Close Average], _BasePrice ) * 100
RETURN
    _Index100&lt;/LI-CODE&gt;
&lt;P&gt;I have attached an updated Excel workbook, and a sample chart looks like this:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;There might be some adjustments needed to handle cases when indexes begin on different dates, but I hope this is a useful starting point.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does this work for you?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 21 Jan 2025 21:25:34 GMT</pubDate>
    <dc:creator>OwenAuger</dc:creator>
    <dc:date>2025-01-21T21:25:34Z</dc:date>
    <item>
      <title>Creating Index base 100 charts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-Index-base-100-charts/m-p/4374315#M173682</link>
      <description>&lt;P&gt;Hi there.&lt;/P&gt;&lt;P&gt;I have been trying to code a base 100 index DAX measure to chart some bourse indexes prices like DJI, NASDAQ, and so on, using daily data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to get this typical index value line chart.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My goal with this this DAX measure is to fill the column C shown in the below Excel sheet, starting in cell C6 with an Index value = 100&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For this purpose I wrote the following DAX code shown below, &lt;EM&gt;&lt;STRONG&gt;&lt;U&gt;but it doesn´t work&lt;/U&gt;&lt;/STRONG&gt;&lt;/EM&gt;.&amp;nbsp; &lt;STRONG&gt;I mean it doesn´t write any number on the sheet.&lt;/STRONG&gt;&lt;BR /&gt;I guess my error is in how I am using the CALCULATE function.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this code the index value must be = 100 at _StartDate. The close price at _StartDate is stored in _BasePrice.&lt;/P&gt;&lt;P&gt;Then index value for any other date is calculated as Close[Date] / _BasePrice x 100.&lt;/P&gt;&lt;P&gt;For instance, in the above table to december 10 (Nasdaq =1565.48) the index should be 1565.48 / 1681.64 x 100 = 93.09 (Here I am assuming that _StartDate is november/5/2008)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;VAR _CurrentDate =&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MAX( 'Calendar'[Date] )&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;VAR _StartDate =&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALCULATE(&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MIN( 'Calendar'[Date] ),&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ALLSELECTED( 'Calendar' )&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;VAR _EndDate =&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALCULATE(&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MAX( 'Calendar'[Date] ),&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ALLSELECTED( 'Calendar' )&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;)&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;VAR _Range =&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATESBETWEEN(&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Calendar'[Date],&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _StartDate,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _CurrentDate&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;)&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;VAR _BasePrice = &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALCULATE(&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIRSTNONBLANK(Table1[CLOSE], 0), &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FILTER(Table1, Table1[DATE] = _StartDate)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;)&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;VAR _Index100 =&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALCULATE(&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DIVIDE( &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUMX( &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Table1,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Table1[CLOSE]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ), &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _BasePrice &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ) * 100&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _Range&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;)&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;RETURN&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _Index100&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have structurated the code using _StartDate, _EndDate and _Range to use the DAX code with timelines.&lt;/P&gt;&lt;P&gt;Any help is welcome&lt;/P&gt;&lt;P&gt;Here is the link with the excel spreadsheet.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.google.com/spreadsheets/d/1QTiThDnik2t3HRy3xfVsFpAxSo-qe8or/edit?usp=sharing&amp;amp;ouid=100866832098495107517&amp;amp;rtpof=true&amp;amp;sd=true" target="_blank"&gt;https://docs.google.com/spreadsheets/d/1QTiThDnik2t3HRy3xfVsFpAxSo-qe8or/edit?usp=sharing&amp;amp;ouid=100866832098495107517&amp;amp;rtpof=true&amp;amp;sd=true&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2025 19:54:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-Index-base-100-charts/m-p/4374315#M173682</guid>
      <dc:creator>hcova7</dc:creator>
      <dc:date>2025-01-21T19:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Index base 100 charts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-Index-base-100-charts/m-p/4374416#M173686</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="900077" data-lia-user-login="hcova7" class="lia-mention lia-mention-user"&gt;hcova7&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is how I would write the measure.&lt;/P&gt;
&lt;P&gt;1. First create &lt;STRONG&gt;Close Average&lt;/STRONG&gt; which averages the CLOSE price over the filtered date range. The AVERAGE aggregation is not too important as this will normally be used by other measures at a daily level.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Close Average :=
AVERAGE ( Table1[CLOSE] )&lt;/LI-CODE&gt;
&lt;P&gt;2. Then create &lt;STRONG&gt;Close Latest&lt;/STRONG&gt;, which returns the value of &lt;STRONG&gt;Close Average&lt;/STRONG&gt; at the latest date within the visible values of 'Calendar'[Date]. This measure is useful when aggregating at month, quarter, year level, as it generally makes sense to show the latest index value.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Close Latest :=
LASTNONBLANKVALUE ( 'Calendar'[Date], [Close Average] )&lt;/LI-CODE&gt;
&lt;P&gt;3. Finally, create &lt;STRONG&gt;IndexBase100 Fix&lt;/STRONG&gt;:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;IndexBase100 Fix :=
VAR _BasePrice =
    CALCULATE (
        FIRSTNONBLANKVALUE ( 'Calendar'[Date], [Close Latest] ),
        ALLSELECTED ( 'Calendar' )
    )
VAR _Index100 =
    DIVIDE ( [Close Average], _BasePrice ) * 100
RETURN
    _Index100&lt;/LI-CODE&gt;
&lt;P&gt;I have attached an updated Excel workbook, and a sample chart looks like this:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;There might be some adjustments needed to handle cases when indexes begin on different dates, but I hope this is a useful starting point.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does this work for you?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2025 21:25:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-Index-base-100-charts/m-p/4374416#M173686</guid>
      <dc:creator>OwenAuger</dc:creator>
      <dc:date>2025-01-21T21:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Index base 100 charts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-Index-base-100-charts/m-p/4376438#M173756</link>
      <description>&lt;P&gt;Dear Owen.&lt;BR /&gt;Thanks a lot&amp;nbsp; for your time and your great answer. It works in 95% for my job.&lt;BR /&gt;However I have a problem when I try to include an index that publishes data values for some dates only and when I try to chart it with major indexes like DJI, NASDAQ, etc, that contain data values in all dates.&lt;BR /&gt;Let me explain this with a real case that&amp;nbsp; I have to deal with (I have changed the real fund name)&lt;/P&gt;&lt;P&gt;Royal Cloud is private fund that publish their data some dates during the month. No everyday.&lt;/P&gt;&lt;P&gt;When I try to compare it with the the major indexes here the problem:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;As you can see in the above Excel table, Royal Cloud Index base 100&amp;nbsp; is in column D and calculated according your DAX measure. This measure leaves some cells in blank so the chart for this fund displays a scatter plot (see right chart).&lt;/P&gt;&lt;P&gt;However, if the measure could fill the gaps with the its last calculated value, the plot will be a continuos line (see below picture). I have manually done this. I have filled the gaps in column D writing in red the last calculated values from the measure.&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;Question:&lt;BR /&gt;How can I change the DAX measure so the blank cells shown in the Index base 100 table can be filled with the last value calculated by the measure?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here the link for the worksheet with the Royal Cloud Fund data:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.google.com/spreadsheets/d/1GwqZIHr8xjq0LZPXzww8dZD_yvcPi3Ay/edit?usp=sharing&amp;amp;ouid=100866832098495107517&amp;amp;rtpof=true&amp;amp;sd=true" target="_blank"&gt;https://docs.google.com/spreadsheets/d/1GwqZIHr8xjq0LZPXzww8dZD_yvcPi3Ay/edit?usp=sharing&amp;amp;ouid=100866832098495107517&amp;amp;rtpof=true&amp;amp;sd=true&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jan 2025 20:41:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-Index-base-100-charts/m-p/4376438#M173756</guid>
      <dc:creator>hcova7</dc:creator>
      <dc:date>2025-01-22T20:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Index base 100 charts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-Index-base-100-charts/m-p/4377375#M173795</link>
      <description>&lt;P&gt;Hi again&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="900077" data-lia-user-login="hcova7" class="lia-mention lia-mention-user"&gt;hcova7&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for testing that out, and for highlighting the issue with blanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have attached an updated workbook.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To fill the blanks, we can make these updates:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Close Latest :=
VAR MaxDate = MAX ( 'Calendar'[Date] )
VAR MaxDateWithData =
    CALCULATE ( MAX ( Table1[DATE] ), 'Calendar'[Date] &amp;lt;= MaxDate )
VAR Result =
    CALCULATE ( [Close Average], 'Calendar'[Date] = MaxDateWithData )
RETURN
    Result&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;IndexBase100 Fix :=
VAR MinDateFiltered =
    CALCULATE ( MIN ( 'Calendar'[Date] ), ALLSELECTED ( 'Calendar' ) )
VAR MinDateInPeriod =
    CALCULATE ( MIN ( Table1[Date] ), ALLSELECTED ( 'Calendar' ) )
VAR MaxDateToStartOfPeriod =
    CALCULATE ( MAX ( Table1[Date] ), 'Calendar'[Date] &amp;lt;= MinDateFiltered )
VAR _BaseDate =
    COALESCE ( MaxDateToStartOfPeriod, MinDateInPeriod )
VAR _BasePrice =
    CALCULATE ( [Close Average], 'Calendar'[Date] = _BaseDate )
VAR _Index100 =
    DIVIDE ( [Close Latest], _BasePrice ) * 100
RETURN
    _Index100&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I did include some alternative formulations of the Index measure for comparison:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;IndexBase100 Fix v2&lt;/STRONG&gt;&amp;nbsp;(performs about the same)&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;IndexBase100 Fix v3&amp;nbsp;&lt;/STRONG&gt;(quite a bit slower)&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Is this what you were looking for and is performance acceptable?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2025 01:27:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-Index-base-100-charts/m-p/4377375#M173795</guid>
      <dc:creator>OwenAuger</dc:creator>
      <dc:date>2025-01-24T01:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Index base 100 charts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-Index-base-100-charts/m-p/4380216#M173874</link>
      <description>&lt;P&gt;Dear Owen:&lt;BR /&gt;Thanks you very much for your new measure.&lt;BR /&gt;It works fine.&lt;BR /&gt;Thanks a lot again for you time.&lt;/P&gt;&lt;P&gt;Best regards and have a nice weekend&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2025 17:44:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creating-Index-base-100-charts/m-p/4380216#M173874</guid>
      <dc:creator>hcova7</dc:creator>
      <dc:date>2025-01-24T17:44:40Z</dc:date>
    </item>
  </channel>
</rss>

