Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
9 | |
8 | |
8 |
User | Count |
---|---|
14 | |
12 | |
11 | |
11 | |
8 |