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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hey guys!
So i have been working on a proyect so im stuck right know! it seems to be soo easy so i hope someone can help me!
| Object | Sales |
| Table | 200 |
| Chair | 550 |
and the same thing on
| Object | Sales |
| Computer | 1000 |
| Mouse | 350 |
So total sales are: 2100
so i would like to divide the total sales / computers for example! but when i add the total sales to the table! it gives me a weird number, so it seems to come with filters! can anyone know of to get the filters off, or what should i do!
Thank you very much!
Solved! Go to Solution.
Hi @panchinxd ,
Please try to use ALL() function, modify your formula as below.
Cartera Total- = CALCULATE(SUM('Mega reporte Prestamos'[SALDOCAP.]);FILTER(ALL('Mega reporte Prestamos');'Mega reporte Prestamos'[ESTADO] = "VENCIDO" || 'Mega reporte Prestamos'[ESTADO] = "VIGENTE")) + CALCULATE(SUM('Megareporte Tarjetas'[Saldo Capital Contable]);FILTER(ALL('Megareporte Tarjetas'); 'Megareporte Tarjetas'[Estado Contable] = "VENCIDO" || 'Megareporte Tarjetas'[Estado Contable] = "VIGENTE"))
Best Regards,
Jay
Community Support Team _ Jay Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
So let me start again!
i have a measure that sum total sales from 2 tables with this code:
Hi @panchinxd ,
Please try to use ALL() function, modify your formula as below.
Cartera Total- = CALCULATE(SUM('Mega reporte Prestamos'[SALDOCAP.]);FILTER(ALL('Mega reporte Prestamos');'Mega reporte Prestamos'[ESTADO] = "VENCIDO" || 'Mega reporte Prestamos'[ESTADO] = "VIGENTE")) + CALCULATE(SUM('Megareporte Tarjetas'[Saldo Capital Contable]);FILTER(ALL('Megareporte Tarjetas'); 'Megareporte Tarjetas'[Estado Contable] = "VENCIDO" || 'Megareporte Tarjetas'[Estado Contable] = "VIGENTE"))
Best Regards,
Jay
Community Support Team _ Jay Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The information you have provided is not making the problem clear to me. Can you please explain with an example. If possible please share a sample pbix file after removing sensitive information.
Thanks.
My Recent Blog -
https://community.powerbi.com/t5/Community-Blog/Winner-Topper-on-Map-How-to-Color-States-on-a-Map-wi...
https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-tr...
Hey @panchinxd
I'm not entirely clear on what you are asking for. Can you post a screen shot of your visual and what what you are trying to accomplish.
Based on what you stated I believe you are looking for the SUMX function: https://docs.microsoft.com/en-us/dax/sumx-function-dax
So your measure would be: Measure = SUM(table[Sales])/SUMX(table[Object]="Computer",Table[Sales])
If you are looking for a way to ignore applied filters you will need to use the ALL() function around the SUMX function. Examples found here: https://docs.microsoft.com/en-us/dax/all-function-dax
If this helps please kudo.
If this answers your question please accept it as a solution.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 104 | |
| 82 | |
| 72 | |
| 46 | |
| 35 |