Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Dear Experinced one
I have requirement wher in i have showcase all columns value at cell level
If I select Brand in slicer then also it should should 121
I have tried dax measure as Calculate (Sum(Value),AllSelected(Dataset),Values(Dataset[Period]) which is giving me grand total in all cells, Please help
below is the attached dataset:
Solved! Go to Solution.
Hi @GAURAV7781
You can try my measure to use all function to achieve your goal.
My measure:
M_Value = SUMX(CALCULATETABLE('Table',ALL('Table'[Brand])),[Value])
Result is as below.
By Default:
Select State in slicer:
You can download the pbix file from this link: Show total at cell level in matrix
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @GAURAV7781
You can try my measure to use all function to achieve your goal.
My measure:
M_Value = SUMX(CALCULATETABLE('Table',ALL('Table'[Brand])),[Value])
Result is as below.
By Default:
Select State in slicer:
You can download the pbix file from this link: Show total at cell level in matrix
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
maybe you can try this
Measure = CALCULATE(SUM('Table'[Value]),REMOVEFILTERS('Table'[Brand]))
please see the attachment below
Proud to be a Super User!
I tried but when i select Brand it dont show column total
have you tried my solution. Does it work for you?
Proud to be a Super User!
@GAURAV7781 , You are filtering brand then only one brand is there, then the total will match with that brand.
Please check You have shown filter of Market in the first screen shot
If you want to ignore all filters
Calculate (Sum(Dataset[Value]),All(Dataset)))
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.