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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi community,
Thank you for reading me. Here is my challenge. I have a measure that works just fine at the store level, but is not aggregating results on supevisors or division.
I have tried a summarized and aggregating it but it defaults to 1 the number of stores in the region returning always a calculation based on the 3rd IF.
This is my measure
// Calcula la venta perdida basada en las condiciones especificadas
IF(
// Condición 1: Si alguno de los valores es BLANK(), devuelve BLANK()
ISBLANK([Max%$AsAMismasComuna]) || ISBLANK([% $ AsA (Mismas)]),
BLANK(),
IF(
// Condición 2: Si hay 2 o más farmacias en la comuna y el porcentaje máximo en la comuna es mayor al actual
[# FarmaciasPorComuna] >= 2 && [Max%$AsAMismasComuna] > [% $ AsA (Mismas)],
// Calcula la venta perdida multiplicando la diferencia por la proyección de ventas
CALCULATE(
([Max%$AsAMismasComuna] - [% $ AsA (Mismas)] ) * [$ Proyeccion]
),
IF(
// Condición 3: Si hay solo 1 farmacia en la comuna y el porcentaje máximo en la división es mayor al actual
[Max%$AsAMismasDivision] > [% $ AsA (Mismas)],
// Calcula la venta perdida multiplicando la diferencia por la proyección de ventas
CALCULATE(
( [Max%$AsAMismasDivision] - [% $ AsA (Mismas)] ) * [$ Proyeccion]
),
// Si no se cumplen las condiciones, devuelve BLANK()
BLANK()
)
)
)
Any suggestions
Thanks
Could you please provide more raw data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples? It would be helpful to find out the solution. You can refer the following links to share the required info:
How to provide sample data in the Power BI Forum
How to Get Your Question Answered Quickly
And It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
Zhengdong Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.