Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Solved! Go to Solution.
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.
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.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |