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
LisaB
Helper III
Helper III

Sum of values in same chart

Hi,

 

I am pretty new to Power BI and learing more and more every day.

 

I am creating a report that will show me sales values depending on sales person, customer type etc. To do this I am using amounts from the ERP system where sales invoice lies in one table and sales credit amound lies in another table. This means I have to queries.

 

What I want to do: Sales person total amount = sales invoice amount - sales credit amout. I want to visualise each sales person's amount in the same chart.

 

Example data

https://1drv.ms/x/s!AnO0yKcIgtwGgcsBzanKGyX-D4riIA

 

 

Any suggestions?

 

Thank you!

Lisa

1 ACCEPTED SOLUTION
SivaMani
Resident Rockstar
Resident Rockstar

@LisaB,

 

1.Create a table to have Sales person's code,

 

SPC = DISTINCT(SalesInvoice[Salesperson_Code]) 

 

2. Create a relationship like below,

 

Relationship.PNG

 

3.Create a measure for Total Amount,

 

TA = SUM(SalesInvoice[Invoice]) - SUM(SalesCredit[Credit]) 

 

That's it

View solution in original post

7 REPLIES 7
SivaMani
Resident Rockstar
Resident Rockstar

Hi @LisaB,

 

It would be easy to help if you share some sample data

Hi @SivaMani,

 

I have added some sample data in the original post.

SivaMani
Resident Rockstar
Resident Rockstar

@LisaB,

 

Is that what you are expecting?

 

Output.PNG

Kind of. I want it a bit more summarised, just one line for each sales person.

SivaMani
Resident Rockstar
Resident Rockstar

@LisaB,

 

1.Create a table to have Sales person's code,

 

SPC = DISTINCT(SalesInvoice[Salesperson_Code]) 

 

2. Create a relationship like below,

 

Relationship.PNG

 

3.Create a measure for Total Amount,

 

TA = SUM(SalesInvoice[Invoice]) - SUM(SalesCredit[Credit]) 

 

That's it

Hi @SivaMani,

 

Thank you, that worked fine for me!

 

I want to make an additional sum, just like the one for SalesPerson. I followed your steps but I cannot activate one of the relationship.

 

Bild 3.pngBild 4.png

SivaMani
Resident Rockstar
Resident Rockstar

@LisaB
The created relationship depend on each other. It like a loop.

That's why you got the error.


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