<?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: Fixed Charge Coverage Ratio (FCCR) in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Fixed-Charge-Coverage-Ratio-FCCR/m-p/3960524#M153685</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="744832" data-lia-user-login="garzajnc24" class="lia-mention lia-mention-user"&gt;garzajnc24&lt;/a&gt;&amp;nbsp;- I've also noticed your rolling 12 month measures are missing some brackets at the end, but I'm sure you're aware of that. They should be in the format below (note I have changed the date table to match my test model):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CALCULATE (
    [Total Sales],
    DATESBETWEEN (
        'Date'[Date],
        NEXTDAY ( SAMEPERIODLASTYEAR ( LASTDATE ( 'Date'[Date] ) ) ),
        LASTDATE ( 'Date'[Date] )
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 30 May 2024 09:42:31 GMT</pubDate>
    <dc:creator>mark_endicott</dc:creator>
    <dc:date>2024-05-30T09:42:31Z</dc:date>
    <item>
      <title>Fixed Charge Coverage Ratio (FCCR)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Fixed-Charge-Coverage-Ratio-FCCR/m-p/3959751#M153660</link>
      <description>&lt;P&gt;Hello all.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need assistance with this ratio measure in PowerBI.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Here is the breakdown of my measures from top to bottom:&lt;/P&gt;&lt;P&gt;FCCR =&lt;BR /&gt;&amp;nbsp; &amp;nbsp; CALCULATE(&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ([Rolling12MonthAdjustedEBITDA] - [Rolling 12 Month Cash Taxes] - [Rolling 12 Month Capital Expenditures]) / [Rolling 12 Month Interest Expense]&lt;BR /&gt;&amp;nbsp; &amp;nbsp; )&lt;/P&gt;&lt;P&gt;Rolling12MonthAdjustedEBITDA=&lt;/P&gt;&lt;P&gt;CALCULATE [Adjusted EBITDA], DATESBETWEEN (DateTable[Date],&lt;/P&gt;&lt;P&gt;NEXTDAY (SAMEPERIODLASTYEAR ( LASTDATE (DateTable[Date]))),&amp;nbsp;&lt;/P&gt;&lt;P&gt;LASTDATE (DateTable[Date])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rolling 12 Month Cash Taxes=&lt;/P&gt;&lt;P&gt;CALCULATE [Total Cash Taxes], DATESBETWEEN (DateTable[Date],&lt;/P&gt;&lt;P&gt;NEXTDAY (SAMEPERIODLASTYEAR ( LASTDATE (DateTable[Date]))),&amp;nbsp;&lt;/P&gt;&lt;P&gt;LASTDATE (DateTable[Date])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rolling 12 Month Capital Expenditures=&lt;/P&gt;&lt;P&gt;CALCULATE [Total Capital Expenditures], DATESBETWEEN (DateTable[Date],&lt;/P&gt;&lt;P&gt;NEXTDAY (SAMEPERIODLASTYEAR ( LASTDATE (DateTable[Date]))),&amp;nbsp;&lt;/P&gt;&lt;P&gt;LASTDATE (DateTable[Date])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rolling12MonthIntrest =&lt;/P&gt;&lt;P&gt;CALCULATE [Total CapitalExpenditures], DATESBETWEEN (DateTable[Date],&lt;/P&gt;&lt;P&gt;NEXTDAY (SAMEPERIODLASTYEAR ( LASTDATE (DateTable[Date]))),&amp;nbsp;&lt;/P&gt;&lt;P&gt;LASTDATE (DateTable[Date])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any assistance will be much appreciated!&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2024 05:37:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Fixed-Charge-Coverage-Ratio-FCCR/m-p/3959751#M153660</guid>
      <dc:creator>garzajnc24</dc:creator>
      <dc:date>2024-05-30T05:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: Fixed Charge Coverage Ratio (FCCR)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Fixed-Charge-Coverage-Ratio-FCCR/m-p/3960414#M153676</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="744832" data-lia-user-login="garzajnc24" class="lia-mention lia-mention-user"&gt;garzajnc24&lt;/a&gt;&amp;nbsp;- I'm going to work on the assumption your problem is with the first 3 months of 2018 showing "Infinity". This is likely to do with your source data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But also, assuming all your other calculations are correct (we have no base data to test). Instead of your FCCR measure I would use the below, it's more optimal, and it handles divide by 0 errors.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DIVIDE(
        ([Rolling12MonthAdjustedEBITDA] - [Rolling 12 Month Cash Taxes] - [Rolling 12 Month Capital Expenditures]), [Rolling 12 Month Interest Expense], 0
    )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Perhaps if this doesnt fix your issue, you can provide some detail over what is wrong, and some sample data.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2024 09:10:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Fixed-Charge-Coverage-Ratio-FCCR/m-p/3960414#M153676</guid>
      <dc:creator>mark_endicott</dc:creator>
      <dc:date>2024-05-30T09:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: Fixed Charge Coverage Ratio (FCCR)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Fixed-Charge-Coverage-Ratio-FCCR/m-p/3960524#M153685</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="744832" data-lia-user-login="garzajnc24" class="lia-mention lia-mention-user"&gt;garzajnc24&lt;/a&gt;&amp;nbsp;- I've also noticed your rolling 12 month measures are missing some brackets at the end, but I'm sure you're aware of that. They should be in the format below (note I have changed the date table to match my test model):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CALCULATE (
    [Total Sales],
    DATESBETWEEN (
        'Date'[Date],
        NEXTDAY ( SAMEPERIODLASTYEAR ( LASTDATE ( 'Date'[Date] ) ) ),
        LASTDATE ( 'Date'[Date] )
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2024 09:42:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Fixed-Charge-Coverage-Ratio-FCCR/m-p/3960524#M153685</guid>
      <dc:creator>mark_endicott</dc:creator>
      <dc:date>2024-05-30T09:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: Fixed Charge Coverage Ratio (FCCR)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Fixed-Charge-Coverage-Ratio-FCCR/m-p/3961380#M153692</link>
      <description>&lt;P&gt;Thank you,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="343036" data-lia-user-login="mark_endicott" class="lia-mention lia-mention-user"&gt;mark_endicott&lt;/a&gt;&amp;nbsp;I will try these suggestion and provide sample source data, if that does not work. My issue is numbers are not reconciling with excel report up to rolling 12 month totals.&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2024 13:38:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Fixed-Charge-Coverage-Ratio-FCCR/m-p/3961380#M153692</guid>
      <dc:creator>garzjnc</dc:creator>
      <dc:date>2024-05-30T13:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: Fixed Charge Coverage Ratio (FCCR)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Fixed-Charge-Coverage-Ratio-FCCR/m-p/3964542#M153786</link>
      <description>&lt;P&gt;I managed to figure out what the problem was. The issue was the source data and not the measures. Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2024 13:53:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Fixed-Charge-Coverage-Ratio-FCCR/m-p/3964542#M153786</guid>
      <dc:creator>garzajnc24</dc:creator>
      <dc:date>2024-05-31T13:53:18Z</dc:date>
    </item>
  </channel>
</rss>

