<?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: Replace Blank Values and Empty Visuals in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814574#M89210</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="299505" data-lia-user-login="PhineasT" class="lia-mention lia-mention-user"&gt;PhineasT&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Count =&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;COALESCE ( DISTINCTCOUNT ( ByProjectActivityTbl[ProjectActivity] ), "No Items Available" )&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 03 Oct 2022 16:28:51 GMT</pubDate>
    <dc:creator>tamerj1</dc:creator>
    <dc:date>2022-10-03T16:28:51Z</dc:date>
    <item>
      <title>Replace Blank Values and Empty Visuals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814308#M89178</link>
      <description>&lt;P&gt;I want to display a '0' in the top box (circle that reads "Blank"), if the is no associated data to calculate and the phrase 'No data available' in the low box (circle).&lt;BR /&gt;&lt;BR /&gt;Is this possible?&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;</description>
      <pubDate>Mon, 03 Oct 2022 14:44:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814308#M89178</guid>
      <dc:creator>PhineasT</dc:creator>
      <dc:date>2022-10-03T14:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Blank Values and Empty Visuals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814348#M89180</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="299505" data-lia-user-login="PhineasT" class="lia-mention lia-mention-user"&gt;PhineasT&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Assuming activities completed is a measure of decimal or integer data type then try&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Assuming activities =&lt;BR /&gt;"Original aggregation formula" + 0&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 15:02:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814348#M89180</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-10-03T15:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Blank Values and Empty Visuals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814369#M89182</link>
      <description>&lt;P&gt;It is not a measure of decimal, it is a text field on which I need to apply a Count condition that returns the total number of 'Activities'.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I believe the calculationis being impacted by the Project Name dropdown on the right edge. The Activities count changes whent he dropdown changes, and where there is no 'Activity' (Blank) appears.&lt;BR /&gt;&lt;BR /&gt;I think I may need two control, for I need one static control that shows ALL 'Activities' and I need to know how many 'Activities' based on the choice in the dropdown.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 15:09:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814369#M89182</guid>
      <dc:creator>PhineasT</dc:creator>
      <dc:date>2022-10-03T15:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Blank Values and Empty Visuals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814387#M89187</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="299505" data-lia-user-login="PhineasT" class="lia-mention lia-mention-user"&gt;PhineasT&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please try this measure&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Count =&lt;BR /&gt;DISTINCTCOUNT ( ByProjectActivityTbl[ProjectActivity] ) + 0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you try with COUNTA instead of DISTINCTCOUNT depending on your requirement&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 15:20:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814387#M89187</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-10-03T15:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Blank Values and Empty Visuals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814565#M89208</link>
      <description>&lt;P&gt;Is there anything I can do about default text in blank box under each count?&lt;BR /&gt;&lt;BR /&gt;I count is zero I'd like box to default 'No Items Available'.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 16:22:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814565#M89208</guid>
      <dc:creator>PhineasT</dc:creator>
      <dc:date>2022-10-03T16:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Blank Values and Empty Visuals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814574#M89210</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="299505" data-lia-user-login="PhineasT" class="lia-mention lia-mention-user"&gt;PhineasT&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Count =&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;COALESCE ( DISTINCTCOUNT ( ByProjectActivityTbl[ProjectActivity] ), "No Items Available" )&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 16:28:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814574#M89210</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-10-03T16:28:51Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Blank Values and Empty Visuals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814604#M89214</link>
      <description>&lt;P&gt;Power BI didn't like it -&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 16:43:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814604#M89214</guid>
      <dc:creator>PhineasT</dc:creator>
      <dc:date>2022-10-03T16:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Blank Values and Empty Visuals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814610#M89215</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="299505" data-lia-user-login="PhineasT" class="lia-mention lia-mention-user"&gt;PhineasT&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Delete this part&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 16:46:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814610#M89215</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-10-03T16:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Blank Values and Empty Visuals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814619#M89216</link>
      <description>&lt;P&gt;I intrepreted your instruction to mean delete the 'Count'?&lt;BR /&gt;&lt;BR /&gt;If that is the case Power BI still doesn't like it.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 16:51:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814619#M89216</guid>
      <dc:creator>PhineasT</dc:creator>
      <dc:date>2022-10-03T16:51:13Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Blank Values and Empty Visuals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814620#M89217</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="299505" data-lia-user-login="PhineasT" class="lia-mention lia-mention-user"&gt;PhineasT&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hit "Enter"&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 16:52:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814620#M89217</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-10-03T16:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Blank Values and Empty Visuals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814621#M89218</link>
      <description>&lt;P&gt;I believe this would be still considered part of the original question...&lt;BR /&gt;&lt;BR /&gt;Is it possible to create a Card with a total count that is not impacted by the action of the dropdown, as is the case with all the others?&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 16:55:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814621#M89218</guid>
      <dc:creator>PhineasT</dc:creator>
      <dc:date>2022-10-03T16:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Blank Values and Empty Visuals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814646#M89220</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="299505" data-lia-user-login="PhineasT" class="lia-mention lia-mention-user"&gt;PhineasT&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes. Please try&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;CALCULATE ( DISTINCTCOUNT ( ByProjectActivityTbl[ProjectActivity] ), REMOVEFILTERS ( ) )&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 17:10:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814646#M89220</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-10-03T17:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Blank Values and Empty Visuals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814663#M89221</link>
      <description>&lt;P&gt;I did a few more tests on the 'No items...' change.&lt;BR /&gt;&lt;BR /&gt;Now a number appears when there is content to display rather than the text that was there. Please advise.&lt;BR /&gt;&lt;BR /&gt;The new measure causing this was&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Required output is available content, if no available content then 'No items...' message.&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is how it use to look.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 17:20:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-Blank-Values-and-Empty-Visuals/m-p/2814663#M89221</guid>
      <dc:creator>PhineasT</dc:creator>
      <dc:date>2022-10-03T17:20:39Z</dc:date>
    </item>
  </channel>
</rss>

