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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Dear all, I create a table, but the total on the last line seems not correct, any idea? Thanks!
Solved! Go to Solution.
Hi @xiumi_hou ,
Please create a new measure like that to work on it.
SUMX(your table, [measure])
@xiumi_hou hi
i think you use aggregation
pick column Current in Vusuals pane and set Do not summarize
what is Current? is it field in data source or calculated column or measure?
@az38 column one is a switch function of different measures. Current is the count value of measures. (Each row is a different measure) Thanks!
the issue is somewhere in measures, give us the measure statements to troubleshooting
try ALL() inside FILTER() like
FILTER(
ALL(Calls),...
)
is it Current measure? or Current has another statement?
@az38 Thanks, this is my current measure
also you can remove all sensitive data from your report and share pbix-file to any cloud service
Hi @xiumi_hou ,
Please create a new measure like that to work on it.
SUMX(your table, [measure])
try CALCULATE() over MIN, like CALCULATE(MIN('Sheet1'[Number])) to use row context and correct summarize in total