<?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: Need help - IF condition - dax measure in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-IF-condition-dax-measure/m-p/1897924#M40922</link>
    <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;, thanks for taking the time on this. Was it the same measure if I use it on DAX? Thanks a lot!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 14 Jun 2021 04:57:07 GMT</pubDate>
    <dc:creator>rbalza</dc:creator>
    <dc:date>2021-06-14T04:57:07Z</dc:date>
    <item>
      <title>Need help - IF condition - dax measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-IF-condition-dax-measure/m-p/1897741#M40917</link>
      <description>&lt;P&gt;Hi PBI friends,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table with two columns named Table[Current Asset] and Table[Current Liabilities] and I wanted to make a dax measure where:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1.) if there were negative values inputted on the table[current asset], it will be then transferred to table[current liabilities], else it will stay at table[current asset]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2.) if there were negative values inputted on the table[current liabilities], it will be then transferred to table[current asset], else it will stay at table[current liabilities].&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See below-desired output:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2021 00:26:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-IF-condition-dax-measure/m-p/1897741#M40917</guid>
      <dc:creator>rbalza</dc:creator>
      <dc:date>2021-06-14T00:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: Need help - IF condition - dax measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-IF-condition-dax-measure/m-p/1897921#M40921</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="296207" data-lia-user-login="rbalza" class="lia-mention lia-mention-user"&gt;rbalza&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;You can create a calculated column and use in your visual.&lt;BR /&gt;Conditioning =&lt;BR /&gt;IF (&lt;BR /&gt;table[current asset] &amp;lt; 0,&lt;BR /&gt;table[current liabilities],&lt;BR /&gt;IF ( table[current liabilities] &amp;lt; 0, table[current asset] )&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2021 04:55:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-IF-condition-dax-measure/m-p/1897921#M40921</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-06-14T04:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: Need help - IF condition - dax measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-IF-condition-dax-measure/m-p/1897924#M40922</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;, thanks for taking the time on this. Was it the same measure if I use it on DAX? Thanks a lot!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2021 04:57:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-IF-condition-dax-measure/m-p/1897924#M40922</guid>
      <dc:creator>rbalza</dc:creator>
      <dc:date>2021-06-14T04:57:07Z</dc:date>
    </item>
    <item>
      <title>Re: Need help - IF condition - dax measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-IF-condition-dax-measure/m-p/1897944#M40924</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="296207" data-lia-user-login="rbalza" class="lia-mention lia-mention-user"&gt;rbalza&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Nope. You have to use VALUES to store the field values. If you need further help please share your data in a table format with the expected output after removing the sensitive information.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2021 05:10:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-IF-condition-dax-measure/m-p/1897944#M40924</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-06-14T05:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: Need help - IF condition - dax measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-IF-condition-dax-measure/m-p/1897973#M40926</link>
      <description>&lt;P&gt;Hi TarunSharma, please find attached sampledata link&amp;nbsp;&lt;A title="SampleData" href="https://www.dropbox.com/scl/fi/ymijxgkdbdqt8gzvut3q5/SampleData.xlsx?dl=0&amp;amp;rlkey=xxgmxsh13sm3rtojwndvlwdbf" target="_self"&gt;https://www.dropbox.com/scl/fi/ymijxgkdbdqt8gzvut3q5/SampleData.xlsx?dl=0&amp;amp;rlkey=xxgmxsh13sm3rtojwndvlwdbf&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2021 05:46:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-IF-condition-dax-measure/m-p/1897973#M40926</guid>
      <dc:creator>rbalza</dc:creator>
      <dc:date>2021-06-14T05:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: Need help - IF condition - dax measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-IF-condition-dax-measure/m-p/1898087#M40931</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="296207" data-lia-user-login="rbalza" class="lia-mention lia-mention-user"&gt;rbalza&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;In this case, the calculated column will be the better option.&lt;BR /&gt;Please check the&amp;nbsp;&lt;A href="https://1drv.ms/u/s!AiBqHyqm0RkffCS8c0A0MRukh_g" target="_self"&gt;link&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2021 06:52:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-IF-condition-dax-measure/m-p/1898087#M40931</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-06-14T06:52:43Z</dc:date>
    </item>
  </channel>
</rss>

