<?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: Calculate if 15 days or greater from a column date, then return &amp;quot;X&amp;quot;, otherwise return &amp;quot;Y&amp;quot; in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-if-15-days-or-greater-from-a-column-date-then-return/m-p/3532111#M135721</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;If you aim to create a new column, please try something like below whether it suits your requirement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;new column CC =
IF (
    [1st letter request date]
        &amp;gt;= TODAY () - 15
        &amp;amp;&amp;amp; NOT ISBLANK ( [1st letter request date] ),
    "Send 2nd request for letters",
    "Waiting on letters"
)
&lt;/LI-CODE&gt;</description>
    <pubDate>Tue, 14 Nov 2023 04:07:03 GMT</pubDate>
    <dc:creator>Jihwan_Kim</dc:creator>
    <dc:date>2023-11-14T04:07:03Z</dc:date>
    <item>
      <title>Calculate if 15 days or greater from a column date, then return "X", otherwise return "Y"</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-if-15-days-or-greater-from-a-column-date-then-return/m-p/3531811#M135709</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a column called "Action Needed" that has alot of If conditions such as if:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[1st letter request date] = blank( ) &amp;amp;&amp;amp; [Records received] = Blank ( ), "Request letters"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am wanting to return a result of "Send 2nd request for letters" if today's date is 15 days or greater from [1st letter request date] otherwise it will be "Waiting on letters" which means it's less than 15 days from today.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I came up with but not sure: [1st letter request date] &amp;gt;= today () - 15 &amp;amp;&amp;amp;, "Send 2nd request for letters", "Waiting on letters"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance!&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 00:16:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-if-15-days-or-greater-from-a-column-date-then-return/m-p/3531811#M135709</guid>
      <dc:creator>HaloKay</dc:creator>
      <dc:date>2023-11-14T00:16:48Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate if 15 days or greater from a column date, then return "X", otherwise return "Y"</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-if-15-days-or-greater-from-a-column-date-then-return/m-p/3532111#M135721</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;If you aim to create a new column, please try something like below whether it suits your requirement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;new column CC =
IF (
    [1st letter request date]
        &amp;gt;= TODAY () - 15
        &amp;amp;&amp;amp; NOT ISBLANK ( [1st letter request date] ),
    "Send 2nd request for letters",
    "Waiting on letters"
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 14 Nov 2023 04:07:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-if-15-days-or-greater-from-a-column-date-then-return/m-p/3532111#M135721</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2023-11-14T04:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate if 15 days or greater from a column date, then return "X", otherwise return "Y"</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-if-15-days-or-greater-from-a-column-date-then-return/m-p/3533494#M135776</link>
      <description>&lt;P&gt;Thank you! I needed that NOT ISBLANK. This will help with the other actions I need to calculate.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 16:41:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-if-15-days-or-greater-from-a-column-date-then-return/m-p/3533494#M135776</guid>
      <dc:creator>HaloKay</dc:creator>
      <dc:date>2023-11-14T16:41:00Z</dc:date>
    </item>
  </channel>
</rss>

