<?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 Calculated Columns Help in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Calculated-Columns-Help/m-p/3038275#M104109</link>
    <description>&lt;P&gt;Its giving me an error code.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would need the [SHIP DATE] to not be blank though it has to have a date value, the [RETAIL DATE] would be blank for true and not blank for false&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 23 Jan 2023 16:13:38 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-01-23T16:13:38Z</dc:date>
    <item>
      <title>DAX Calculated Columns Help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Calculated-Columns-Help/m-p/3038159#M104096</link>
      <description>&lt;P&gt;I need help, I am trying to figure out how to write a True/False DAX expression for current inventory.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Something like this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Current inventory = Ship Date is not blank&amp;nbsp;&lt;/P&gt;&lt;P&gt;Retail Date is blank&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But im not quite sure how to tie those together.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jan 2023 15:35:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Calculated-Columns-Help/m-p/3038159#M104096</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-23T15:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Calculated Columns Help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Calculated-Columns-Help/m-p/3038207#M104099</link>
      <description>&lt;P&gt;hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;could you elaborate this logic?&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jan 2023 15:50:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Calculated-Columns-Help/m-p/3038207#M104099</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2023-01-23T15:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Calculated Columns Help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Calculated-Columns-Help/m-p/3038224#M104100</link>
      <description>&lt;P&gt;Here is a snippet of a few of the columns i have and each row represents 1 unit of our product.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need a calculated column that will take the ship date and retail date and give me a true/false value&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;where true would = Not blank or null in [SHIP DATE] and Blank or null in [RETAIL DATE]&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;False would be = Not blank or null in [SHIP DATE] but blank or null in [RETAIL DATE]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;SHIP DATE&lt;/TD&gt;&lt;TD&gt;AGE&lt;/TD&gt;&lt;TD&gt;RETAIL DATE&lt;/TD&gt;&lt;TD&gt;EXTERIOR DECOR&lt;/TD&gt;&lt;TD&gt;INTERIOR DECOR&lt;/TD&gt;&lt;TD&gt;ONLINE DATE&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;OFFLINE DATE&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Mon, 23 Jan 2023 15:56:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Calculated-Columns-Help/m-p/3038224#M104100</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-23T15:56:12Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Calculated Columns Help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Calculated-Columns-Help/m-p/3038259#M104108</link>
      <description>&lt;P&gt;hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;try like:&lt;/P&gt;&lt;P&gt;Column =&lt;BR /&gt;IF(&lt;BR /&gt;[SHIP DATE]&amp;lt;&amp;gt;BLANK()&amp;amp;&amp;amp;[RETAIL DATE]=BLANK(),&lt;BR /&gt;"TRUE", "FALSE"&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jan 2023 16:04:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Calculated-Columns-Help/m-p/3038259#M104108</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2023-01-23T16:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Calculated Columns Help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Calculated-Columns-Help/m-p/3038275#M104109</link>
      <description>&lt;P&gt;Its giving me an error code.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would need the [SHIP DATE] to not be blank though it has to have a date value, the [RETAIL DATE] would be blank for true and not blank for false&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jan 2023 16:13:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Calculated-Columns-Help/m-p/3038275#M104109</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-23T16:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Calculated Columns Help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Calculated-Columns-Help/m-p/3038284#M104111</link>
      <description>&lt;P&gt;hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the screenshot suggests you are adding a custom column in Power Query, while the code above is for a calculated column with DAX.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jan 2023 16:18:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Calculated-Columns-Help/m-p/3038284#M104111</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2023-01-23T16:18:29Z</dc:date>
    </item>
  </channel>
</rss>

