Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Swathi1
Helper I
Helper I

Summation not providing correct result set in BI.

Hi, I have two rows values in the table level like 60& 60. If I will do sum in the front end report level I am getting 240. Any option I need to change.

4 REPLIES 4
Anonymous
Not applicable

Hi @Swathi1 ,

 

Has your problem been solved? If not, please share the sample file so we can help you better.

 

Best regards,
Community Support Team_ Scott Chang

vojtechsima
Super User
Super User

Hello,

@Swathi1 that is very strange.

Do you use your own measure, like SUM('Table'[Column])?

 

Alternatively, this can't happen if this is your only table, perhaps you have some Many To Many relationship that's create duplication.

Check Model, Power BI (unless you say differently) creates relationships automatically, perhaps there are some unwanted ones.

 

Alternatively share a link with your .pbix and I can have a direct look.

 Hi,

I am using following calculation ,

Create a cloumn  = if (Table name [specific column]="X" && Table name [specific column]="Y", (Table name [specific column])) and on top it selecting sum option in the summariazation level. 

Hello, @Swathi1 ,

try rewriting it as a measure:

CALCULATE(
SUM('table'[ColumnForSum]),
'table'[specific column]="X" && 'table'[specific column]="Y"
)

I suggest in general avoiding implicit measures (clicking Sum button on top) and writing your own measures.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors