- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Percentage of Completed Projects
How would I create a measure to show how many projects (as a percentage) have been completed within that latest calendar month?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @Alta88 ,
Here some steps that I want to share, you can check them if they suitable for your requirement.
Here is my test data:
Create a measure
Percentage =
VAR _coutRows = COUNT('Table'[Project ID])
VAR _rows =
CALCULATE(
COUNT('Table'[Project ID]),
FILTER(
'Table',
'Table'[Status] = "Completed" && 'Table'[Comopleted Date] >= DATE(YEAR(TODAY()),MONTH(TODAY()),1) && 'Table'[Comopleted Date] <= EOMONTH(TODAY(),0)
)
)
RETURN
_rows/_coutRows
Final output
Best regards,
Albert He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Cool! Looks like it worked! Thanks for your help!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Yes, here's the data again:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Thanks for the data showing completed projects. That info wasn't in the first image you shared.
Just FYI, it's always good practice to provide data for us to help you, not images. We have to enter all that data into PBI before we can start on a solution. You'll get a better response from people if you provide data as a file or at least a table in the forum.
You also haven't given an example of the desired result. You say you want 'a measure to show how many projects (as a percentage) have been completed within that latest calendar month' :
- Is that a percentage compared to all projects?
- A percentage of projects completed compared to their due date
- A percentage of projects compared to all projects except those that have a status of 'Submitted', 'Blocked' or 'Awaiting Approval'?
- Something else?
Regards
Phil
Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.
Blog :: YouTube Channel :: Connect on Linkedin
Proud to be a Super User!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @Alta88
In your data there isn't anywhere that says when a project is completed. Need this to do any kind of calculations.
Regards
Phil
Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.
Blog :: YouTube Channel :: Connect on Linkedin
Proud to be a Super User!

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
01-22-2025 10:19 AM | |||
01-21-2025 05:01 PM | |||
01-30-2025 04:35 AM | |||
10-02-2024 07:57 AM | |||
05-10-2024 03:03 PM |
User | Count |
---|---|
140 | |
110 | |
81 | |
60 | |
46 |