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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Pratz203
Helper I
Helper I

Need help in creating a report

Hello Experts,

Hope everyone is doing good.
I have a requriement to create a visualization as explained below.

Here is my sample dummy data:

CategoryProjectBudget
ABCP1100
DEFP2200
GHIP3400
ABCP4350
ABCP5500
DEFP6150
GHIP7280
GHIP8600
GHIP9360
DEFP10800


I want to create a visualization as shown below:

 

Expectation: In X-axis display categories and Y-axis display Budget and each project is displayed as bubble where size is proportional to budget. A representational image is attached in the reply section for reference.







Question 2: Is it possible to plot this kind of visualization in excel?

I would appreciate your response.
Thanks in advance.

1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

Hi @Pratz203 ,

 

How about creating a R visual?

library(ggplot2)
ggplot(dataset,aes(x=Project, y=Budget,col=Project))+ geom_point() + facet_grid(~Category)

r2.PNG

 

BTW, .pbix file attached.

 

 

Best Regards,

Icey

 

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

4 REPLIES 4
Icey
Community Support
Community Support

Hi @Pratz203 ,

 

How about creating a R visual?

library(ggplot2)
ggplot(dataset,aes(x=Project, y=Budget,col=Project))+ geom_point() + facet_grid(~Category)

r2.PNG

 

BTW, .pbix file attached.

 

 

Best Regards,

Icey

 

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

Pratz203
Helper I
Helper I

Attaching the expected visuaization
viz.JPG

Anonymous
Not applicable

try the following set up

Karlos_0-1597823281866.png

 

I realised I made a mistake, the setup should be 
Legend = Category
X-Axis = Project
y Axis =  Budget
Size = Budget 

Karlos_0-1597823505985.png

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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