<?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 How to replace blank value with text in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-blank-value-with-text/m-p/2156594#M49815</link>
    <description>&lt;P&gt;I have already created a following dax to get&amp;nbsp; either "PM" or "Non PM" for all different values. However, there are blank values too, and the result is coming "PM","Non PM", and "Blank". i want to replace that "Blank" value to "Unknown". Can please somebody help me on that?&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Role = if(find("PROJECT MANAGER",upper(role[Name]),1,0)&amp;gt;0,"PM","Non-PM")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Tue, 26 Oct 2021 20:38:25 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-10-26T20:38:25Z</dc:date>
    <item>
      <title>How to replace blank value with text</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-blank-value-with-text/m-p/2156594#M49815</link>
      <description>&lt;P&gt;I have already created a following dax to get&amp;nbsp; either "PM" or "Non PM" for all different values. However, there are blank values too, and the result is coming "PM","Non PM", and "Blank". i want to replace that "Blank" value to "Unknown". Can please somebody help me on that?&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Role = if(find("PROJECT MANAGER",upper(role[Name]),1,0)&amp;gt;0,"PM","Non-PM")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 26 Oct 2021 20:38:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-blank-value-with-text/m-p/2156594#M49815</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-10-26T20:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace blank value with text</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-blank-value-with-text/m-p/2156620#M49819</link>
      <description>&lt;P&gt;Like this?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Role =
IF (
    LEN ( role[Name] ) = 0, "Unknown",
    IF ( CONTAINSSTRING ( role[Name], "PROJECT MANAGER" ), "PM", "Non-PM" )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 26 Oct 2021 21:13:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-blank-value-with-text/m-p/2156620#M49819</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-10-26T21:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace blank value with text</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-blank-value-with-text/m-p/2162347#M49997</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;According to your description, here&lt;/SPAN&gt;’&lt;SPAN&gt;s my solution.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;If my understanding is not accurate,could you show me more details?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;BR /&gt;Community Support Team _ kalyj&lt;/P&gt;&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Oct 2021 05:43:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-blank-value-with-text/m-p/2162347#M49997</guid>
      <dc:creator>v-yanjiang-msft</dc:creator>
      <dc:date>2021-10-29T05:43:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to replace blank value with text</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-blank-value-with-text/m-p/2165793#M50166</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have you followed the DAX formula posted by v-kalyj-msft to find the solution?&lt;/P&gt;
&lt;P&gt;If so, would you like to mark his reply as a solution so that others can learn from it too?&lt;/P&gt;
&lt;P&gt;Thanks in advance!&lt;/P&gt;
&lt;P&gt;&lt;A href="http://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;How to Get Your Question Answered Quickly&amp;nbsp;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&amp;nbsp;&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Community Support Team _Robert Qin&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Nov 2021 08:36:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-replace-blank-value-with-text/m-p/2165793#M50166</guid>
      <dc:creator>v-robertq-msft</dc:creator>
      <dc:date>2021-11-01T08:36:03Z</dc:date>
    </item>
  </channel>
</rss>

