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! Request now

Reply
sureshg2498
Advocate II
Advocate II

Remove Aggregation from Matrix visual/Move cell value to front

Hi All,

 

I have created a Matrix visual with customer name under value. Since it aggreagtes i have taken Index to display all customers as shown below.

Current Matrix visual

sureshg2498_2-1732869954809.png

 

sureshg2498_1-1732869580228.png

 

Client Expected one:

sureshg2498_0-1732869553966.png

Would it be possible to display the results in Matrix visual as shown above. Could anyone please help me on it?

Please find the below data set for matrix visual.

 

CountryFiscal QuarterCustomer Name
USAFY Q1 2024T Mobile (4/26/2023)
USAFY Q1 2024J&J (4/20/2023)
USAFY Q2 2024Wallmart (5/25/2023)

@Desktopusers @Desktop_Dax  @Ritaf1983  @rajendraongole1  @Bibiano_Geraldo  @danextian 

Thanks,

Suresh.

 

1 ACCEPTED SOLUTION
Bibiano_Geraldo
Super User
Super User

hI @sureshg2498 ,

Please, create a new calculated column by this measure:

Custom Index = 
VAR CurrentCountry = 'Table'[Country]
VAR CurrentQuarter = 'Table'[Fiscal Quarter]
VAR CurrentIndex = 'Table'[Index]
VAR SortedTable =
    FILTER (
        'Table',
        'Table'[Country] = CurrentCountry && 
        'Table'[Fiscal Quarter] = CurrentQuarter
    )
RETURN
    RANKX(SortedTable, 'Table'[Index], , ASC, Dense)

 

Now, instead to use index in your matrix, please, use Custom index column, and your final result should look like this:

Bibiano_Geraldo_0-1732874033450.png

 

 



View solution in original post

6 REPLIES 6
Bibiano_Geraldo
Super User
Super User

hI @sureshg2498 ,

Please, create a new calculated column by this measure:

Custom Index = 
VAR CurrentCountry = 'Table'[Country]
VAR CurrentQuarter = 'Table'[Fiscal Quarter]
VAR CurrentIndex = 'Table'[Index]
VAR SortedTable =
    FILTER (
        'Table',
        'Table'[Country] = CurrentCountry && 
        'Table'[Fiscal Quarter] = CurrentQuarter
    )
RETURN
    RANKX(SortedTable, 'Table'[Index], , ASC, Dense)

 

Now, instead to use index in your matrix, please, use Custom index column, and your final result should look like this:

Bibiano_Geraldo_0-1732874033450.png

 

 



Thank you for your prompt reply to my request for information. I appreciate your quick turnaround on my inquiry. Your speedy response to my information request is much appreciated. Thank you so much Bibiano.

You're very welcome! I'm glad I could assist you. Thank you for your kind words, and I'm always here to help!

 

Thank you so much.

dharmendars007
Super User
Super User

Hello @sureshg2498 , 

 

Create a calculated column that concatenates Customer Name with its respective date (e.g., "T Mobile (4/26/2023)"). This ensures each customer entry is unique.

 

Customer with Date =
'Table'[Customer Name] & " (" & FORMAT('Table'[Date], "MM/dd/yyyy") & ")"

Use the new calculated column (Customer with Date) as the value, and change the aggregation to Do not summarize in the Values section.

 

If you find this helpful , please mark it as solution which will be helpful for others and Your Kudos/Likes 👍 are much appreciated!

 

Thank You

Dharmendar S

LinkedIN 

Thank you so much for your reply Dharmendar.

DB level we have concatinated customer name with start date. However I could not see the Do not Summarize under Values section. Could you please check and help me on it.

 

sureshg2498_0-1732872187970.png

 

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
Top Kudoed Authors