<?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: Average of a measure in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-a-measure/m-p/4333094#M172030</link>
    <description>&lt;P&gt;Could you please try this measure:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Average Working Days =
AVERAGEX(
SUMMARIZE('YourTable', 'YourTable'[Supplier], "Days", [Time between registration and first contact with customer]),
[Days]
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Steps:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;SUMMARIZE groups by Supplier and calculates the measure.&lt;/LI&gt;
&lt;LI&gt;AVERAGEX averages the measure values.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Place Supplier on the axis and this measure in values for your chart.&lt;/P&gt;</description>
    <pubDate>Sat, 23 Aug 2025 11:48:38 GMT</pubDate>
    <dc:creator>rohit1991</dc:creator>
    <dc:date>2025-08-23T11:48:38Z</dc:date>
    <item>
      <title>Average of a measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-a-measure/m-p/4332995#M172024</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to calculate the average of a measure. A calculated table or column is not an option as my company uses semantic models and scheduling an automatic refresh isn't possible with calculated columns/tables in semantic models.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The measure 'Time between registration and first contact with customer' is the time in working days and is a whole number. I use it to plot the amount of days per work order.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also want to calculate the average amount of working days per supplier and show it in a clustered column chart, using this measure. It is not possible. How do I do this? I've already tried making a new measure for the average, trying AVERAGE([Time between registration and first contact with customer]) but AVERAGE only works using columns, and this is not information stored in a column but a measure.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2024 11:59:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-a-measure/m-p/4332995#M172024</guid>
      <dc:creator>rsch91</dc:creator>
      <dc:date>2024-12-17T11:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: Average of a measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-a-measure/m-p/4333094#M172030</link>
      <description>&lt;P&gt;Could you please try this measure:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Average Working Days =
AVERAGEX(
SUMMARIZE('YourTable', 'YourTable'[Supplier], "Days", [Time between registration and first contact with customer]),
[Days]
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Steps:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;SUMMARIZE groups by Supplier and calculates the measure.&lt;/LI&gt;
&lt;LI&gt;AVERAGEX averages the measure values.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Place Supplier on the axis and this measure in values for your chart.&lt;/P&gt;</description>
      <pubDate>Sat, 23 Aug 2025 11:48:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-a-measure/m-p/4333094#M172030</guid>
      <dc:creator>rohit1991</dc:creator>
      <dc:date>2025-08-23T11:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: Average of a measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-a-measure/m-p/4333204#M172038</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="816079" data-lia-user-login="rsch91" class="lia-mention lia-mention-user"&gt;rsch91&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Avg Time Per Supplier = &lt;BR /&gt;DIVIDE(&lt;BR /&gt;SUMX(&lt;BR /&gt;VALUES('Work Orders'[Supplier]),&lt;BR /&gt;[Time between registration and first contact with customer]&lt;BR /&gt;),&lt;BR /&gt;COUNTROWS(VALUES('Work Orders'[Supplier]))&lt;BR /&gt;)&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":love_letter:"&gt;💌&lt;/span&gt; &lt;STRONG&gt;If this helped, a Kudos &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; or Solution mark &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; would be great! &lt;span class="lia-unicode-emoji" title=":party_popper:"&gt;🎉&lt;/span&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Cheers,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Kedar&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;A href="https://www.linkedin.com/in/kedar-pande" target="_blank" rel="noopener"&gt;Connect on LinkedIn&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2024 13:59:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-a-measure/m-p/4333204#M172038</guid>
      <dc:creator>Kedar_Pande</dc:creator>
      <dc:date>2024-12-17T13:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Average of a measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-a-measure/m-p/4336501#M172188</link>
      <description>&lt;P&gt;Yes, this worked, thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2024 08:34:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Average-of-a-measure/m-p/4336501#M172188</guid>
      <dc:creator>rsch91</dc:creator>
      <dc:date>2024-12-19T08:34:43Z</dc:date>
    </item>
  </channel>
</rss>

