Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
22 | |
10 | |
10 | |
9 | |
7 |