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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
lavankumar1989a
Helper II
Helper II

Assistance required to plot a visual

Hi experts,

 

there is a requirement that we received from client to plot visuals like below,

lavankumar1989a_0-1722317402826.png

Requirement should be like "Product Importance and Competitor Relevance are collapsed into a single overall rating for the vertical axis.  The horizonal axis is a computed value based on status and age from filing"

 

So please find and do let me know if we can plot the same type of visual splits. So please share any sample pbix file, will helps me a lot if you came across with same requirement. 

 

Thank you so much in advance for your support!

 

Thanks

 

2 REPLIES 2
SamInogic
Super User
Super User

Hi,

 

You can utilize the Power BI Visuals like Bubble / Scatter Chart and Packed Bubble,

 

You can get it from More Visual in Power Bi Desktop

 

SamInogic_0-1722323629274.jpeg

 

 

We have a sample table with two Custom Column in Power BI Desktop

 

SamInogic_1-1722323629276.jpeg

 

 

Please find the Table and column structure below,

 

ID

Type

Week

Label

ProductImportance

CompetitorRelevance

Status

AgeFromFiling

1

A

W1

Y

4

3

IDF

1

2

A

W1

Y

5

4

IDF

3

3

B

W1

Y

2

2

App

6

4

B

W2

Y

3

3

App

8

5

B

W2

N

1

1

IDF

10

6

C

W2

N

2

2

IDF

12

7

B

W3

Y

3

4

App

15

8

C

W3

Y

5

5

IDF

18

9

A

W3

N

4

4

IDF

20

10

B

W4

Y

2

3

App

7

 

 

Create a calculated column that combines ProductImportance and CompetitorRelevance.

 

OverallRating =

('Sample Product'[ProductImportance] + 'Table'[CompetitorRelevance]) / 2

 

Create a calculated column based on Status and AgeFromFiling.

 

HorizontalValue =

SWITCH(

    TRUE(),

'Sample Product'[Status] = "IDF" && 'Sample Product'[AgeFromFiling] <= 5, 1,

    'Sample Product'[Status] = "App" && 'Sample Product'[AgeFromFiling] <= 5, 2,

    'Sample Product'[Status] = "IDF" && 'Sample Product'[AgeFromFiling] > 5 && 'Sample Product'[AgeFromFiling] <= 10, 3,

    'Sample Product'[Status] = "App" && 'Sample Product'[AgeFromFiling] > 5 && 'Sample Product'[AgeFromFiling] <= 10, 4,

    'Sample Product'[Status] = "IDF" && 'Sample Product'[AgeFromFiling] > 10 && 'Sample Product'[AgeFromFiling] <= 15, 5,

    'Sample Product'[Status] = "App" && 'Sample Product'[AgeFromFiling] > 10 && 'Sample Product'[AgeFromFiling] <= 15, 6,

    'Sample Product'[Status] = "IDF" && 'Sample Product'[AgeFromFiling] > 15 && 'Sample Product'[AgeFromFiling] <= 20, 7,

    'Sample Product'[Status] = "App" && 'Sample Product'[AgeFromFiling] > 15 && 'Sample Product'[AgeFromFiling] <= 20, 8,  

  BLANK()

)

 

Hope this helps.

 

Thanks!

 

Inogic Professional Services: Power Platform/Dynamics 365 CRM
An expert technical extension for your techno-functional business needs
Service: https://www.inogic.com/services/
Tips and Tricks: https://www.inogic.com/blog/

Hi @SamInogic ,

 

Thanks for your response and sharing the info. But we are looking in a bubble need to show different splits like below, highlited in red color

lavankumar1989a_0-1722840072939.png

within a single bubble customer is looking spilt like above. So if this would be possible can you please share the details along with a sample pbix file please to incorporate into my design.

 

Thank you so much for your kind support and help!

 

 

Thanks,

Lavan

 

 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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