Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
reynaldo_malave
Helper III
Helper III

Aggregate on differente levels

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

1 REPLY 1
Anonymous
Not applicable

Hi @reynaldo_malave 

 

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.

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.