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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
EdsonGomes
Frequent Visitor

FILTRAR 3 MAIORES E OS 3 MENORES.

Eu tenho uma tabela com nome de funcionários e quantidade de venda, onde para cada linha na tabela e uma venda realizada.

Em uma matriz eu coloquei:
Nome funcionários e uma medida quantidade de venda.

Quero adicionar uma segmentação de dados, e escolher um funcionário.

E na matrix quero que apareça apenas os 3 funcionários que vendeu mais do que ele e os 3 que vende mais do ele.

E possível?

1 REPLY 1
amitchandak
Super User
Super User

@EdsonGomes , You need an independent date table.

Create a measure using that

 

select sales =

calculate([sales] , filter(Table, Table[employee] = selectedvalue(Emp[Employee]))

 

Create a measure

final Sales=

sumx(filter(values(Table[Employee]), [sales] >[select sales]),[Sales])

 

Not you can use TOPN filter from viusal level filter of use TOPN function

 

TOP 3= CALCULATE([final Sales],TOPN(3,all(Table[Employee]),[final Sales],DESC),VALUES(Table[Employee]))

 

use only this measure with an employee from the table

 

refer

Need of an Independent Table in Power BI: https://youtu.be/lOEW-YUrAbE

 

TOPN: https://www.youtube.com/watch?v=QIVEFp-QiOk&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=42

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
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 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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