Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

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: Category Project Budget ABC P1 100 DE...
  • Icey's avatar
    6 years ago

    Hi Anonymous ,

     

    How about creating a R visual?

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

     

    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.