Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

value subtraction in single column between two dates

I have table name called  Master data base . in this table have column name value  like below 

 

Reductionbucket                             Months                        Value     

OustockConsumation                    Ac Jan                            0.05

 Scrap                                             Ac Jan                           0.08   

 Supply Improvemtns                    Ac Jan                            0.28        

 New Materials                              Ac Jan                            0.55

SellBack OME"S                             Ac Jan                            0.55

OustockConsumation                    Ac Feb                           0.45

 Scrap                                             Ac Feb                           0.38   

 Supply Improvemtns                    Ac Feb                            0.18        

 New Materials                              Ac Feb                            0.75

SellBack OME"S                             Ac Feb                           0.55

.

.

.

.

OustockConsumation                      Jan                            0.35

 Scrap                                               Jan                           0.28   

 Supply Improvemtns                       Jan                           0.48        

 New Materials                                Jan                            0.15

SellBack OME"S                               Jan                            0.85

 

 

i want to calculation like for  Example Jan 

 

=(ACJan*-1) - (Jan*-1)

 

 also i want to get total variation of the value . i have created sperat table like below 

 

Here i have created measure 

 

Total Month Variation =

IF(SELECTEDVALUE('Order Table'[Sno])="6.Total FY Variation",
CALCULATE(SUM('Master Data Base'[Value]) ,ALLSELECTED('Order Table'[Sno])),

SUM('Master Data Base'[Value]))
 
But i am  wrong getting correct value . looking for support . thanks in advance 

 

  • Hi Anonymous ,

    According to your description, if you mean when select  "6.Total FY Variation" in the slicer, it should calculate the sum of all Value in the 'Master Data Base' table, you should replace ALLSELECTED in the formula with ALL, as ALLSELECTED only contain the selected value in the slicer, but ALL return all values ignore the slicer.

    Reference: ALLSELECTED function (DAX) - DAX | Microsoft Docs

    ALL function (DAX) - DAX | Microsoft Docs

    Total Month Variation = 
    IF (
        SELECTEDVALUE ( 'Order Table'[Sno] ) = "6.Total FY Variation",
        CALCULATE (
            SUM ( 'Master Data Base'[Value] ),
            ALL ( 'Order Table'[Sno] )
        ),
        SUM ( 'Master Data Base'[Value] )
    )
    

    It works fine in my sample.

     

    I attach my sample below for reference.

     

    Best Regards,
    Community Support Team _ kalyj

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

     

2 Replies

  • Anonymous , Your calculations are not clear to me. Please explain by using an example

  • Hi Anonymous ,

    According to your description, if you mean when select  "6.Total FY Variation" in the slicer, it should calculate the sum of all Value in the 'Master Data Base' table, you should replace ALLSELECTED in the formula with ALL, as ALLSELECTED only contain the selected value in the slicer, but ALL return all values ignore the slicer.

    Reference: ALLSELECTED function (DAX) - DAX | Microsoft Docs

    ALL function (DAX) - DAX | Microsoft Docs

    Total Month Variation = 
    IF (
        SELECTEDVALUE ( 'Order Table'[Sno] ) = "6.Total FY Variation",
        CALCULATE (
            SUM ( 'Master Data Base'[Value] ),
            ALL ( 'Order Table'[Sno] )
        ),
        SUM ( 'Master Data Base'[Value] )
    )
    

    It works fine in my sample.

     

    I attach my sample below for reference.

     

    Best Regards,
    Community Support Team _ kalyj

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