<?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: Convert Excel Formula to DAX in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Convert-Excel-Formula-to-DAX/m-p/4107773#M163012</link>
    <description>&lt;P&gt;That worked thank you!&lt;/P&gt;</description>
    <pubDate>Mon, 19 Aug 2024 22:59:28 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-08-19T22:59:28Z</dc:date>
    <item>
      <title>Convert Excel Formula to DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Convert-Excel-Formula-to-DAX/m-p/4107759#M163010</link>
      <description>&lt;P&gt;Could someone please help me convert this excel formula to DAX syntax?&lt;BR /&gt;&lt;BR /&gt;=IF([@ARDivisionNo]="08", "Avertx Billing",IF([@[Current Product Line']]]="SAAS","SAAS Billing",IF([@[Current Product Line']]]="SUBS","SAAS Billing",IF([@[Current Product Line']]]="PERP","Perpetual Billing",IF([@[Current Product Line']]]="BDSW","Bundled Software Billing","Hardware Billing")))))&lt;BR /&gt;&lt;BR /&gt;Thanks!!&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2024 22:41:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Convert-Excel-Formula-to-DAX/m-p/4107759#M163010</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-08-19T22:41:20Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Excel Formula to DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Convert-Excel-Formula-to-DAX/m-p/4107768#M163011</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SWITCH(
    TRUE,
    [ARDivisonNo] = "08", "Avertx Billing",
    [Current Product Line] = "SAAS", "SAAS Billing",
    [Current Product Line] = "SUBS", "SAAS Billing",
    [Current Product Line] = "PERP", "Perpetual Billing",
    [Current Product Line] = "BDSW", "Bundled Software Billing",
    TRUE, "Hardware Billing"
)&lt;/LI-CODE&gt;&lt;P&gt;The SWITCH function will evaluate each condition from top to bottom, stopping when it returns a result of TRUE and returning the matching result. You might have to modify the above to take into account the table names your columns come from.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2024 22:55:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Convert-Excel-Formula-to-DAX/m-p/4107768#M163011</guid>
      <dc:creator>Brightsider</dc:creator>
      <dc:date>2024-08-19T22:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Excel Formula to DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Convert-Excel-Formula-to-DAX/m-p/4107773#M163012</link>
      <description>&lt;P&gt;That worked thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2024 22:59:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Convert-Excel-Formula-to-DAX/m-p/4107773#M163012</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-08-19T22:59:28Z</dc:date>
    </item>
  </channel>
</rss>

