Forum Discussion

masplin's avatar
masplin
Impactful Individual
8 years ago
Solved

Filtering calculation using values in Pivot table

Our budget has been defined as monthly numbers and exisits in a table where the budget number is on a row where the date is 1/mm/yyyy. This date is then related to my main date table so can be plotte...
  • Anonymous's avatar
    Anonymous
    8 years ago

    HI masplin,

     

    It will be help for analysis if you share some sample data.


    In addition, you can also try to use below formula if it works for your scenario:

    Budget GP Current Month =
    VAR current_date =
        MIN ( DateTable[Day] )
    RETURN
        CALCULATE (
            [Budget GP],
            FILTER (
                Detail_Budget_16,
                YEAR ( Detail_Budget_16[Month] ) = YEAR ( current_date )
                    && MONTH ( Detail_Budget_16[Month] ) = MONTH ( current_date )
            )
        )
    

     

    Regards

    XIaoxin Sheng