Forum Discussion
Dax Formula correction help
- 7 months ago
Hello! The issue lies in your tot_val variable. By using ALL(Inventory_stock_dtl), you are telling Power BI to ignore every single filter on that table, which is why your Division, Category, and Item filters are being ignored.
To calculate the total across all aging buckets while keeping your other slicers active, you should replace ALL with ALLEXCEPT or specifically remove the filter only from the Ageing Bucket column.
Try updating your tot_val variable to this:
var tot_val =
CALCULATE(
SUM(Inventory_stock_dtl[Value]),
ALLEXCEPT(
Inventory_stock_dtl,
Inventory_stock_dtl[Stock_fin_year],
Inventory_stock_dtl[Month_sorter],
Inventory_stock_dtl[div_name],
Inventory_stock_dtl[item_category],
Inventory_stock_dtl[item
]
)
)
Alternatively, a cleaner way using REMOVEFILTERS:
var tot_val =
CALCULATE(
SUM(Inventory_stock_dtl[Value]),
REMOVEFILTERS(Inventory_stock_dtl[Ageing_Bucket_Column_Name]), -- Replace with your actual bucket column name
Inventory_stock_dtl[Stock_fin_year] = FinalYear,
Inventory_stock_dtl[Month_sorter] = FinalMo
nth
)
Why this works:
ALLEXCEPT: It clears all filters except for the ones you list. By listing Year, Month, Division, and Category, those filters stay active while the "Ageing Bucket" filter is cleared to get the grand total.
REMOVEFILTERS: This is the modern way. It only removes the filter from the specific "Ageing Bucket" column, allowing all other slicers (Division, Item, etc.) to continue affecting the total.
I hope this helps you get that 100% total! If this resolves your issue, please mark this post as an "Accepted Solution." Happy New Year!
Best regards,
Vishwanath
Hi JothiG
1)Total Stock Value =
SUM ( 'Stock'[Value] )
2)Ageing Bucket % =
DIVIDE(
[Total Stock Value],
CALCULATE(
[Total Stock Value],
ALL ( 'Stock'[Ageing_bucket] )
),
0
)
Numerator → Stock value for current ageing bucket
Denominator → Total stock value across all ageing buckets
ALL(Ageing_bucket) removes only bucket filter
Result = percentage contribution
Sum of all buckets = 100%
Area Chart
X-Axis → Stock_fin_year
Y-Axis → Ageing Bucket %
Legend → Ageing_bucket
Data labels → ON (Percentage)
still not getting correct result.
- krishnakanth2407 months agoSuper User
Hi JothiG
Okay, can you confirm the columns that are referencing from each table and the relationships between the tables.