Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
2 years ago
Solved

DAX Measures

I am trying to calculate and show sum of only the current month and not the YTD. I used this CurrentMonth = CALCULATE(SUM('YourTable'[YourColumn]), FILTER(ALL('Date'[Date]),'Date'[Date] >= STARTOFMONTH(TODAY()) && 'Date'[Date] <= TODAY())) but not working.

  • Hi, Your DAX metric looks correct for calculating the sum of the current month's columns. If this measure is not working as expected, ensure the following:
    Date Table Relationship: Ensure that the 'Date' table contains 'YourColumn' with the table.
    Date format: ensure that the t'Date' table
    DateRange in the data:
    Measurement Usage CurrentMonth: make sure you are using the ` measurement in the following context:

     

    Best Regards,

    hackcrr

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

2 Replies

  • hackcrr's avatar
    hackcrr
    Memorable Member

    Hi, Your DAX metric looks correct for calculating the sum of the current month's columns. If this measure is not working as expected, ensure the following:
    Date Table Relationship: Ensure that the 'Date' table contains 'YourColumn' with the table.
    Date format: ensure that the t'Date' table
    DateRange in the data:
    Measurement Usage CurrentMonth: make sure you are using the ` measurement in the following context:

     

    Best Regards,

    hackcrr

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi, Anonymous 

    Thanks for hackcrr reply. In fact, this function should be populated with a date column, where the Today function does not work. You can use the EOMONTH function with the TODAY function to get the date at the beginning of the month.



     


    STARTOFMONTH - DAX Guide

    DAX:

     

    CurrentMonth = 
    VAR _getCurrentStartMonth =
        EOMONTH ( TODAY (), -1 ) + 1
    VAR _result =
        CALCULATE (
            SUM ( 'Table'[Value] ),
            FILTER (
                ALL ( 'Date'[Date] ),
                'Date'[Date] >= _getCurrentStartMonth
                    && 'Date'[Date] <= TODAY ()
            )
        )
    RETURN
        _result
    

     


    Best Regards,
    Yang
    Community Support Team

     

    If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
    If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

    How to get your questions answered quickly --  How to provide sample data in the Power BI Forum