Forum Discussion

a_mixed_life's avatar
a_mixed_life
Resolver I
9 years ago
Solved

Daily Average MTD

Daily Average MTD?

 

I seem to have a problem getting the proper calculation. I got a working current Daily Average MTD base on the date filter but prefer for it to auto calculate rather than me changing the filter. But my current one is having to rely on the filter.

 

Current Calculation -

MTD Daily Average = AVERAGE('Date Filter', [Total Sales])

Thoughts?

 

  • MattAllington's avatar
    MattAllington
    9 years ago

    Yep, that's great. Assuming your calendar table follows the rules for in built time intelligence functions (read here  http://exceleratorbi.com.au/power-pivot-calendar-tables/) you can use the following formulas

     

    Sales MTD =TOTALMTD(factsales[sales amount])

    total sales days = distinctcount(factsales[date])

    daily average = divide([sales mtd],[total sales days])

     

    i think this will do what you want

4 Replies

  • MattAllington's avatar
    MattAllington
    Community Champion

    It is impossible to help you unless you provide information about how your tables are loaded and related, and where the data is that you are trying to average.

    • a_mixed_life's avatar
      a_mixed_life
      Resolver I

      Hello Matt,

       

      Fair enough. My tables are loaded or imported from SQL. I have two tables, one is Date Filter and the other is FactSales which includes a column for Posting Date, Document No., Customer No., and Sales Amount. I have


      My current calculation works as it uses the Date filter and Sales Amount using the AVERAGEX. I was hoping to get a MTD Daily Average base on the Posting Date at its current month to get an average without me having to ensure to change the month and year filter.

       

      Hopefully that's enough info? Thanks for the response.

      • MattAllington's avatar
        MattAllington
        Community Champion

        Yep, that's great. Assuming your calendar table follows the rules for in built time intelligence functions (read here  http://exceleratorbi.com.au/power-pivot-calendar-tables/) you can use the following formulas

         

        Sales MTD =TOTALMTD(factsales[sales amount])

        total sales days = distinctcount(factsales[date])

        daily average = divide([sales mtd],[total sales days])

         

        i think this will do what you want