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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
JdBernate
Frequent Visitor

Context problem (i guess)

Hi guys

 

im trying to count the products that represent the 80% percent of sales. I need my measure works outside of the report table as a kpi. In the next image you can understand better the situation.

imgpbi.png 

As you can see i got the cumulative sales an the percentage represented by every product. If you check the table, the first 16 products have the 80% of the sales. I made a measure "Number of Top 80% products", that already counts the products!, but when i use the measure as a kpi, outside of the report table (the little rectangle next to the big table) it doesnt work!!. I guess is a context problem but i havent find out the solution. i hope any of you guys could help me:

These are my measures (they are in spanish XD, sorry)

 

Cumulative sales by product

**bleep** totalArti = if(not(ISBLANK([Ventas Netas]));calculate([Ventas Netas];FILTER(all(ListadoArticulos[Descripcion Articulo]);sum(FacturacionDetallada[Ventas Netas])<=[Ventas Netas])))

 

*[ventas netas] means [total sales]

*ListadoArticulos[Descripción Articulo] means Products table[Description]

 

Number of Top 80% products =
CALCULATE (
    DISTINCTCOUNT ( ListadoArticulos[Descripcion Articulo] );
    FILTER (
        ALLSELECTED(ListadoArticulos[Descripcion Articulo]  );
        [**bleep** totalArti] < [80%sales]
    )
)

 

80%sales = CALCULATE([Ventas Netas];ALLSELECTED(ListadoArticulos[Descripcion Articulo]))*0,8

 

 

Thank for your time.

 

My best regards

 

Juan Diego

1 ACCEPTED SOLUTION

Hi @v-chuncz-msft

 

Thank you for your help. The problem was in the filter, the content is ok, i changed the measure for avoid the values equal to zero.

 

Number of Top 80% products =
CALCULATE (
    DISTINCTCOUNT ( ListadoArticulos[Descripcion Articulo] );
    FILTER (
        ALLSELECTED(ListadoArticulos[Descripcion Articulo]  );
        AND([**bleep** totalArti] < [80%sales],[**bleep** totalArti] >0),
    )
)

 

Again, thank you for your time.

 

regards

 

Juan Diego

View solution in original post

2 REPLIES 2
v-chuncz-msft
Community Support
Community Support

@JdBernate,

 

Try using ALLSELECTED Function instead of ALL Function in the cumulative measure as well.

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-chuncz-msft

 

Thank you for your help. The problem was in the filter, the content is ok, i changed the measure for avoid the values equal to zero.

 

Number of Top 80% products =
CALCULATE (
    DISTINCTCOUNT ( ListadoArticulos[Descripcion Articulo] );
    FILTER (
        ALLSELECTED(ListadoArticulos[Descripcion Articulo]  );
        AND([**bleep** totalArti] < [80%sales],[**bleep** totalArti] >0),
    )
)

 

Again, thank you for your time.

 

regards

 

Juan Diego

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors