<?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: Regarding hash one value dax function in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-hash-one-value-dax-function/m-p/4661436#M178503</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1263120" data-lia-user-login="Bharathpowerbi" class="lia-mention lia-mention-user"&gt;Bharathpowerbi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The reason your hashonevalue measure isn't returning a result when filtering by Country is because of how HASONEVALUE(financials[Segment]) works. Your formula:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;hashonevalue = IF(HASONEVALUE(financials[Segment]), SUM(financials[Profit]), BLANK())
&lt;/LI-CODE&gt;
&lt;P&gt;only returns the profit if exactly one segment is selected. When you select France in the Country slicer, it may still include multiple segments in the data, so HASONEVALUE returns false, and the measure shows blank. This is expected behavior, not a cross-filtering issue.&lt;/P&gt;
&lt;P&gt;To confirm how many segments are active under the current filters, you can add:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Selected Segment Count = DISTINCTCOUNT(financials[Segment])
&lt;/LI-CODE&gt;
&lt;P&gt;If this count is greater than one, your original measure will remain blank. The measure is working as designed, but the result depends entirely on the data context created by your slicers.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;</description>
    <pubDate>Mon, 21 Apr 2025 14:34:16 GMT</pubDate>
    <dc:creator>DataNinja777</dc:creator>
    <dc:date>2025-04-21T14:34:16Z</dc:date>
    <item>
      <title>Regarding hash one value dax function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-hash-one-value-dax-function/m-p/4661234#M178495</link>
      <description>&lt;P&gt;Regarding hash one Value dax function it supports cross filter right it is not working.&lt;/P&gt;&lt;P&gt;Created hashonevalue on segment column trying to filter on country column but not filtering.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Mon, 21 Apr 2025 13:11:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-hash-one-value-dax-function/m-p/4661234#M178495</guid>
      <dc:creator>Bharathpowerbi</dc:creator>
      <dc:date>2025-04-21T13:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding hash one value dax function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-hash-one-value-dax-function/m-p/4661342#M178500</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1263120" data-lia-user-login="Bharathpowerbi" class="lia-mention lia-mention-user"&gt;Bharathpowerbi&lt;/a&gt;&amp;nbsp; - Can you please elaborate what exactly you are looking for and what is that iscrossfiltered measure, to analyse the problem statement.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Apr 2025 13:55:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-hash-one-value-dax-function/m-p/4661342#M178500</guid>
      <dc:creator>Sourav_M</dc:creator>
      <dc:date>2025-04-21T13:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding hash one value dax function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-hash-one-value-dax-function/m-p/4661436#M178503</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1263120" data-lia-user-login="Bharathpowerbi" class="lia-mention lia-mention-user"&gt;Bharathpowerbi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The reason your hashonevalue measure isn't returning a result when filtering by Country is because of how HASONEVALUE(financials[Segment]) works. Your formula:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;hashonevalue = IF(HASONEVALUE(financials[Segment]), SUM(financials[Profit]), BLANK())
&lt;/LI-CODE&gt;
&lt;P&gt;only returns the profit if exactly one segment is selected. When you select France in the Country slicer, it may still include multiple segments in the data, so HASONEVALUE returns false, and the measure shows blank. This is expected behavior, not a cross-filtering issue.&lt;/P&gt;
&lt;P&gt;To confirm how many segments are active under the current filters, you can add:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Selected Segment Count = DISTINCTCOUNT(financials[Segment])
&lt;/LI-CODE&gt;
&lt;P&gt;If this count is greater than one, your original measure will remain blank. The measure is working as designed, but the result depends entirely on the data context created by your slicers.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;</description>
      <pubDate>Mon, 21 Apr 2025 14:34:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-hash-one-value-dax-function/m-p/4661436#M178503</guid>
      <dc:creator>DataNinja777</dc:creator>
      <dc:date>2025-04-21T14:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding hash one value dax function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-hash-one-value-dax-function/m-p/4669132#M178847</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1263120" data-lia-user-login="Bharathpowerbi" class="lia-mention lia-mention-user"&gt;Bharathpowerbi&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;Just wanted to check if you had the opportunity to review the suggestions provided?&lt;BR /&gt;If the response has addressed your query, please&amp;nbsp;&lt;STRONG&gt;accept it as a solution&lt;/STRONG&gt;&amp;nbsp;and give a&amp;nbsp;&lt;STRONG&gt;'Kudos'&lt;/STRONG&gt;&amp;nbsp;so other members can easily find it.&lt;BR /&gt;Thank You&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Apr 2025 11:22:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-hash-one-value-dax-function/m-p/4669132#M178847</guid>
      <dc:creator>v-sdhruv</dc:creator>
      <dc:date>2025-04-26T11:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding hash one value dax function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-hash-one-value-dax-function/m-p/4672954#M178961</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1263120" target="_blank"&gt;@Bharathpowerbi&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;Just wanted to check if you had the opportunity to review the suggestions provided?&lt;BR /&gt;If the response has addressed your query, please&amp;nbsp;&lt;STRONG&gt;accept it as a solution&lt;/STRONG&gt;&amp;nbsp;and give a&amp;nbsp;&lt;STRONG&gt;'Kudos'&lt;/STRONG&gt;&amp;nbsp;so other members can easily find it.&lt;BR /&gt;Thank You&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Apr 2025 12:23:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-hash-one-value-dax-function/m-p/4672954#M178961</guid>
      <dc:creator>v-sdhruv</dc:creator>
      <dc:date>2025-04-29T12:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding hash one value dax function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-hash-one-value-dax-function/m-p/4678755#M179202</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1263120" target="_blank" rel="noopener"&gt;@Bharathpowerbi&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;Just wanted to check if you had the opportunity to review the suggestions provided?&lt;BR /&gt;If the response has addressed your query, please&amp;nbsp;&lt;STRONG&gt;accept it as a solution&lt;/STRONG&gt;&amp;nbsp;and give a&amp;nbsp;&lt;STRONG&gt;'Kudos'&lt;/STRONG&gt;&amp;nbsp;so other members can easily find it.&lt;BR /&gt;Thank You&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 04 May 2025 07:13:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-hash-one-value-dax-function/m-p/4678755#M179202</guid>
      <dc:creator>v-sdhruv</dc:creator>
      <dc:date>2025-05-04T07:13:05Z</dc:date>
    </item>
  </channel>
</rss>

