Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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
Solved! Go to Solution.
1.Create a table to have Sales person's code,
SPC = DISTINCT(SalesInvoice[Salesperson_Code])
2. Create a relationship like below,
3.Create a measure for Total Amount,
TA = SUM(SalesInvoice[Invoice]) - SUM(SalesCredit[Credit])
That's it
Kind of. I want it a bit more summarised, just one line for each sales person.
1.Create a table to have Sales person's code,
SPC = DISTINCT(SalesInvoice[Salesperson_Code])
2. Create a relationship like below,
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.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.