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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
leudyston
Helper I
Helper I

Remove measurement negative values

Hello friends,

 

I am having a problem in SUGESTÃO DE COMPRAS measurement When in my context only one store is being filtered, the measure works correctly not subtracting the negative values ​​and appearing zeroed. However, when filtering more than one store, as in the example below, the stores ALDEOTA and MESSEJANA, the measure subtracts the negative value of a store by the positive of another store, changing the TOTAL, but there should be no such subtraction, precisely because negative values were replaced by "0".

 

Sugestão de Compras = IF(
                          HASONEVALUE(ditens[Tamanho]);
                          IF(
                              [Calc Sugestão de Compras]>=0;
                              [Calc Sugestão de Compras];0
                            );
                          SUMX(
                              SUMMARIZE(
                                        VALUES(ditens[Tamanho]);
                                         [Tamanho];
                                         "AgrupaTamanho";
                                         IF(                                                                                                                             [Calc Sugestão de Compras]>=0;
                                            [Calc Sugestão de Compras];0
                                           )
                                         )
                               ;[AgrupaTamanho]
                              )
                      )

 

Can anyone help me with this problem?

 

I am making available the .pbix file and below the explanatory image.

file .PBIX

 

 

 

image.jpg

 

IMAGE2.jpg

 

 

 

1 ACCEPTED SOLUTION
v-sihou-msft
Employee
Employee

@leudyston

 

In this scenario, I don't think it's possible to control the sub total result with DAX. On each row level total, it still takes the slicer from ditens[Tamanho]. So it will always calculate all [Calc Sugestão de Compras] then apply the condition, the logic can never go to this part: 

 

SUMX(
                              SUMMARIZE(
                                        VALUES(ditens[Tamanho]);
                                         [Tamanho];
                                         "AgrupaTamanho";
                                         IF(                                                                                                                             [Calc Sugestão de Compras]>=0;
                                            [Calc Sugestão de Compras];0
                                           )
                                         )
                               ;[AgrupaTamanho]
                              )

Regards,

View solution in original post

1 REPLY 1
v-sihou-msft
Employee
Employee

@leudyston

 

In this scenario, I don't think it's possible to control the sub total result with DAX. On each row level total, it still takes the slicer from ditens[Tamanho]. So it will always calculate all [Calc Sugestão de Compras] then apply the condition, the logic can never go to this part: 

 

SUMX(
                              SUMMARIZE(
                                        VALUES(ditens[Tamanho]);
                                         [Tamanho];
                                         "AgrupaTamanho";
                                         IF(                                                                                                                             [Calc Sugestão de Compras]>=0;
                                            [Calc Sugestão de Compras];0
                                           )
                                         )
                               ;[AgrupaTamanho]
                              )

Regards,

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.