<?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: Dax to indicate &amp;quot;No&amp;quot; for blanks. in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-indicate-quot-No-quot-for-blanks/m-p/3439984#M130638</link>
    <description>&lt;P&gt;I'm glad it works.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Don't forget to mark as solved the topic for other users which may need it&lt;/P&gt;</description>
    <pubDate>Wed, 20 Sep 2023 12:58:54 GMT</pubDate>
    <dc:creator>mlsx4</dc:creator>
    <dc:date>2023-09-20T12:58:54Z</dc:date>
    <item>
      <title>Dax to indicate "No" for blanks.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-indicate-quot-No-quot-for-blanks/m-p/3439697#M130604</link>
      <description>&lt;P&gt;Hello everyone.&lt;/P&gt;&lt;P&gt;I have a column that has the values "yes", "Not Reviewed", and blanks. I would like tge blanks to return "no". Could anyone please assist with the correct measure. Your assistance is appreciated &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2023 09:34:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-indicate-quot-No-quot-for-blanks/m-p/3439697#M130604</guid>
      <dc:creator>AMBP73</dc:creator>
      <dc:date>2023-09-20T09:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to indicate "No" for blanks.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-indicate-quot-No-quot-for-blanks/m-p/3439717#M130606</link>
      <description>&lt;P&gt;Try this measure:&lt;/P&gt;&lt;P&gt;measure = if(ISBLANK('table'[column]), "No", 'table'[column])&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2023 10:35:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-indicate-quot-No-quot-for-blanks/m-p/3439717#M130606</guid>
      <dc:creator>ChiragGarg2512</dc:creator>
      <dc:date>2023-09-20T10:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to indicate "No" for blanks.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-indicate-quot-No-quot-for-blanks/m-p/3439767#M130613</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="596891" data-lia-user-login="AMBP73" class="lia-mention lia-mention-user"&gt;AMBP73&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can do:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Calculated_Column= IF(ISBLANK('YourTable'[Column]), "No", 'YourTable'[YourColumn])&lt;/LI-CODE&gt;&lt;P&gt;Be aware, that you are calculating a new column.&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can also use PowerQuery editor and replace directly nulls by No&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2023 10:24:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-indicate-quot-No-quot-for-blanks/m-p/3439767#M130613</guid>
      <dc:creator>mlsx4</dc:creator>
      <dc:date>2023-09-20T10:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to indicate "No" for blanks.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-indicate-quot-No-quot-for-blanks/m-p/3439814#M130618</link>
      <description>&lt;P&gt;Many thanks for both of the tips. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2023 10:58:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-indicate-quot-No-quot-for-blanks/m-p/3439814#M130618</guid>
      <dc:creator>AMBP73</dc:creator>
      <dc:date>2023-09-20T10:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to indicate "No" for blanks.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-indicate-quot-No-quot-for-blanks/m-p/3439815#M130619</link>
      <description>&lt;P&gt;Many thanks ChiragGarg2512&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2023 10:59:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-indicate-quot-No-quot-for-blanks/m-p/3439815#M130619</guid>
      <dc:creator>AMBP73</dc:creator>
      <dc:date>2023-09-20T10:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to indicate "No" for blanks.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-indicate-quot-No-quot-for-blanks/m-p/3439984#M130638</link>
      <description>&lt;P&gt;I'm glad it works.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Don't forget to mark as solved the topic for other users which may need it&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2023 12:58:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-indicate-quot-No-quot-for-blanks/m-p/3439984#M130638</guid>
      <dc:creator>mlsx4</dc:creator>
      <dc:date>2023-09-20T12:58:54Z</dc:date>
    </item>
  </channel>
</rss>

