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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

How to create a TOP 3 customer each Quarter wise only Current Year and Need to filter Manager Wise

Hi,

Please help me  how to show Each Quarter top Customer Name with Values in Manager Wise

i have attached below 3 Tables

1, Customer details table

Sudhakar1000_0-1725363069572.png

2. Manager wise Target 

Sudhakar1000_1-1725363138178.png

3. Customer Wise Achievement details

Sudhakar1000_2-1725363244595.png

Looking Result like below if i select Jhon then only Jhon top 3 customer for each Q1 need to show.

Sudhakar1000_3-1725363460319.png

 

Kindly help 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

Thanks Irwan  for the quick reply. Please allow me to offer some other thoughts:

(1)We can create a column.

Index =
RANKX (
    FILTER (
        'Customer Wise Achievement details',
        [Manager] = EARLIER ( 'Customer Wise Achievement details'[Manager] )
            && 'Customer Wise Achievement details'[Quart]
                = EARLIER ( 'Customer Wise Achievement details'[Quart] )
    ),
    [Achv],
    ,
    DESC
)

(2) Create matrix visual object and set filtering [Index<=3].

vtangjiemsft_0-1725514593469.png

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @Anonymous ,

 

Thanks Irwan  for the quick reply. Please allow me to offer some other thoughts:

(1)We can create a column.

Index =
RANKX (
    FILTER (
        'Customer Wise Achievement details',
        [Manager] = EARLIER ( 'Customer Wise Achievement details'[Manager] )
            && 'Customer Wise Achievement details'[Quart]
                = EARLIER ( 'Customer Wise Achievement details'[Quart] )
    ),
    [Achv],
    ,
    DESC
)

(2) Create matrix visual object and set filtering [Index<=3].

vtangjiemsft_0-1725514593469.png

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

Irwan
Super User
Super User

hello @Anonymous 

 

i assumed you have reached to Table number 3 (Customer Wise Achievement details).

 

so from there, here is an example.

1. create a calculated column to define number of quarter from month name

Quart =
var _Month = CONVERT("2024-"&'Table'[Month]&"-01",DATETIME)
var _Quarter = QUARTER(_Month)
Return
CONCATENATE("Q",_Quarter)

Irwan_0-1725414465337.png

 

2. create a new table with following DAX.

Summarize =
TOPN(
    3,
    SUMMARIZE(
        'Table',
        'Table'[Quart],
        'Table'[Customer Name],
        'Table'[Achv]
    ),
    'Table'[Achv],
    DESC
)
Irwan_2-1725414690307.png

 

3. use matrix visual

Irwan_4-1725414852727.png

 

 

Hope this will help.

Thank you.

Anonymous
Not applicable

Hi Irwan,

Thank your for Quick reply,

Its woring fine, but its reflecting only overall 3 customer i need manager wise, i am using slicer filter for each Manager.

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors