Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello everyone,
I have a requirement as follows:
I need to calculate
If Today’s date is greater than the End Date (it's already overshot) then show the status in my report it's NOT Completed.
For e.g. Today is 08 Mar 2022 and the project End date was 11 Mar 2022 then I have to the project is NOT completed (not completed yet)
But if the Project End date was 05 Mar 2022, then I don’t have to show this status as it's already completed.
How could I achieve this?
@amitchandak @TheoC @Greg_Deckler
Solved! Go to Solution.
If I got your point correct, then try this measure:
Progress status = 
Var _Today = TODAY()
return
if(MAX('Table'[END DATE])<=_Today,blank(),"Not Completed")
Output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
If I got your point correct, then try this measure:
Progress status = 
Var _Today = TODAY()
return
if(MAX('Table'[END DATE])<=_Today,blank(),"Not Completed")
Output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.