<?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 Only Include Applicable Values when combing custom string with other measures in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Only-Include-Applicable-Values-when-combing-custom-string-with/m-p/4300445#M170769</link>
    <description>&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am looking to create a longish DAX measure that combines some custom text with measures already written. How would I filter out those entries that aren't applicable, but are showing up on my table due to the custom string portion of my measure:&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;&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;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 25 Nov 2024 18:41:43 GMT</pubDate>
    <dc:creator>dbalkin777</dc:creator>
    <dc:date>2024-11-25T18:41:43Z</dc:date>
    <item>
      <title>Only Include Applicable Values when combing custom string with other measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Only-Include-Applicable-Values-when-combing-custom-string-with/m-p/4300445#M170769</link>
      <description>&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am looking to create a longish DAX measure that combines some custom text with measures already written. How would I filter out those entries that aren't applicable, but are showing up on my table due to the custom string portion of my measure:&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;&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;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2024 18:41:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Only-Include-Applicable-Values-when-combing-custom-string-with/m-p/4300445#M170769</guid>
      <dc:creator>dbalkin777</dc:creator>
      <dc:date>2024-11-25T18:41:43Z</dc:date>
    </item>
    <item>
      <title>Re: Only Include Applicable Values when combing custom string with other measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Only-Include-Applicable-Values-when-combing-custom-string-with/m-p/4300458#M170770</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="752268" data-lia-user-login="dbalkin777" class="lia-mention lia-mention-user"&gt;dbalkin777&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Add logic that returns a value only if the measure is not blank:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Formatted All Outputs =
VAR vMeasureValue = [All Research Objective Outputs]
VAR vResult =
    IF (
        NOT ISBLANK ( vMeasureValue ),
        "Research Objective:" &amp;amp; UNICHAR ( 10 ) &amp;amp; vMeasureValue
    )
RETURN
    vResult&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2024 18:58:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Only-Include-Applicable-Values-when-combing-custom-string-with/m-p/4300458#M170770</guid>
      <dc:creator>DataInsights</dc:creator>
      <dc:date>2024-11-25T18:58:45Z</dc:date>
    </item>
  </channel>
</rss>

