<?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: HELP WITH DAX in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HELP-WITH-DAX/m-p/4121405#M163637</link>
    <description>&lt;P&gt;This was easier than I imagined! Thank you so much &lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 27 Aug 2024 19:35:06 GMT</pubDate>
    <dc:creator>LeonardCs</dc:creator>
    <dc:date>2024-08-27T19:35:06Z</dc:date>
    <item>
      <title>HELP WITH DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HELP-WITH-DAX/m-p/4121367#M163630</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table with colummn that contains several numbers and I need to sum them.&lt;BR /&gt;It would be easy, but in this colummn I have some words together and I can't take this words.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for exemple:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Values:&lt;BR /&gt;10,00&lt;/P&gt;&lt;P&gt;20,00&lt;/P&gt;&lt;P&gt;not yet&lt;/P&gt;&lt;P&gt;30,00&lt;/P&gt;&lt;P&gt;loading&lt;/P&gt;&lt;P&gt;40,00....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I creat a measure that just sum the numbers disregarding the words?&lt;/P&gt;</description>
      <pubDate>Tue, 27 Aug 2024 19:09:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HELP-WITH-DAX/m-p/4121367#M163630</guid>
      <dc:creator>LeonardCs</dc:creator>
      <dc:date>2024-08-27T19:09:45Z</dc:date>
    </item>
    <item>
      <title>Re: HELP WITH DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HELP-WITH-DAX/m-p/4121377#M163632</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="666820" data-lia-user-login="LeonardCs" class="lia-mention lia-mention-user"&gt;LeonardCs&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Measure = 
SUMX ( 
    'Table',
    IFERROR ( 'Table'[Value] + 0, 0 )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 27 Aug 2024 19:19:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HELP-WITH-DAX/m-p/4121377#M163632</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2024-08-27T19:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: HELP WITH DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HELP-WITH-DAX/m-p/4121378#M163633</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="666820" data-lia-user-login="LeonardCs" class="lia-mention lia-mention-user"&gt;LeonardCs&lt;/a&gt;&amp;nbsp;Try this. PBIX attached below signature.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
    VAR __Table = 
        ADDCOLUMNS(
            'Table',
            "Column1", IF( ISERROR( [Values:] + 0 ), BLANK(), [Values:] + 0 )
        )
    VAR __Result = SUMX( __Table, [Column1] )
RETURN
    __Result&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 27 Aug 2024 19:19:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HELP-WITH-DAX/m-p/4121378#M163633</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2024-08-27T19:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: HELP WITH DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HELP-WITH-DAX/m-p/4121380#M163634</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;Beat me by 15 seconds!! And nice one!&lt;/P&gt;</description>
      <pubDate>Tue, 27 Aug 2024 19:20:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HELP-WITH-DAX/m-p/4121380#M163634</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2024-08-27T19:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: HELP WITH DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HELP-WITH-DAX/m-p/4121381#M163635</link>
      <description>&lt;P&gt;Lol&lt;BR /&gt;It's been a while since I last answered a question in the forum.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Aug 2024 19:22:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HELP-WITH-DAX/m-p/4121381#M163635</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2024-08-27T19:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: HELP WITH DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HELP-WITH-DAX/m-p/4121405#M163637</link>
      <description>&lt;P&gt;This was easier than I imagined! Thank you so much &lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Aug 2024 19:35:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HELP-WITH-DAX/m-p/4121405#M163637</guid>
      <dc:creator>LeonardCs</dc:creator>
      <dc:date>2024-08-27T19:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: HELP WITH DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HELP-WITH-DAX/m-p/4121410#M163640</link>
      <description>&lt;P&gt;Thank you for responding quickly&lt;/P&gt;</description>
      <pubDate>Tue, 27 Aug 2024 19:36:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HELP-WITH-DAX/m-p/4121410#M163640</guid>
      <dc:creator>LeonardCs</dc:creator>
      <dc:date>2024-08-27T19:36:49Z</dc:date>
    </item>
  </channel>
</rss>

