Forum Discussion
Visual Suggestion to Show Project Completion Status by Milestones
Prabhat
- Anonymous1 year ago
Hi, prabhatnath
All you need to do is create a bar chart and put the fields in it to see the number of each species
How to Get Your Question Answered Quickly
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
5 Replies
- dk_dkSuper User
Hi prabhatnath ,
If you can modify the query or add a calculated column to your data, you could add a "MilestoneNumeric" column that is a Whole Number format, and equal to the numerical value of the Milestone (MS1=1,MS2=2, etc..)
Then you can create a new measure: MaxMilestone = MAX(Data[MilestoneNumeric])
Finally, a bar chart where the Y axis is your ProjectName, and the X axis is your MaxMilestone measure.- prabhatnathAdvocate III
Thanks dk_dk for your input.
In Y-Axis it will show the project name, but in x-Axis I want to show all Milestone Names instead of the new numeric column. Can you suggest?
Thanks,
Prabhat
- AnonymousNot applicable
Hi, prabhatnath
Maybe you can create a measure to show completion status:
CompletionStatus = IF(NOT(ISBLANK(MAX('ProjectMilestones'[MilestoneName]))), TRUE())Then put it in Matrix view:
How to Get Your Question Answered Quickly
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- prabhatnathAdvocate III
Thank you Anonymous for your input. I can see the milestone for each project as per your sample. But I will like to show the output as a graph, may be a Bar Chart or something?
Thanks,Prabhat
- AnonymousNot applicable
Hi, prabhatnath
All you need to do is create a bar chart and put the fields in it to see the number of each species
How to Get Your Question Answered Quickly
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.