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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
JayRags
New Member

Stacked Back for Ranks

I have the following data :

 

ProductRankAmount
A1100
B1100
C2150
D2150
E2150
F3200

 

I want to plot on X axis Rank, Y Axis Amount. And at the intersection (For example Rank 1, Amount 100, show A/B, for Rank 2, Amout 150 show C,D,E). 

Can you please suggest visual for this?

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi rajendraongole1 ,thanks for the quick reply, I'll add more.

Hi @JayRags ,

Regarding your question, I think you can use the line chart and tooltip page.

Create report tooltip pages in Power BI - Power BI | Microsoft Learn

Place a card visual in the tooltip page and create a measure using the following expression

Measure = CONCATENATEX('Table',[Product],"/")

Final output

vzhouwenmsft_0-1728439996094.png

 

Best Regards,
Wenbin Zhou

 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi rajendraongole1 ,thanks for the quick reply, I'll add more.

Hi @JayRags ,

Regarding your question, I think you can use the line chart and tooltip page.

Create report tooltip pages in Power BI - Power BI | Microsoft Learn

Place a card visual in the tooltip page and create a measure using the following expression

Measure = CONCATENATEX('Table',[Product],"/")

Final output

vzhouwenmsft_0-1728439996094.png

 

Best Regards,
Wenbin Zhou

 

This is Perfect!!! 

rajendraongole1
Super User
Super User

Hi @JayRags - To visualize your data where you plot Rank on the X-axis, Amount on the Y-axis, and display the corresponding products at the intersection, you can use Power BI's Scatter Chart. The Scatter Chart allows for the plotting of distinct points with labels at the intersections, which is ideal for showing multiple products at the same coordinate.

 

rajendraongole1_0-1728409560290.png

 

rajendraongole1_1-1728409916930.png

 

ProductConcat_m =
CONCATENATEX(
  FILTER(
    prop,
    prop[Rank] = MAX(prop[Rank]) &&
    prop[Amount] = MAX(prop[Amount])
  ),
  prop[Product],
  "/"
)

you can also check the matrix visualization. 

Hope it works.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.