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
v-zhouwen-msft
Community Support
Community Support

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
v-zhouwen-msft
Community Support
Community Support

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!





avatar user

Helpful resources

Announcements
March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)