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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
aaroh_bits791
Helper I
Helper I

Compute the project end date as measure

Hello everyone,

 

I have a requirement as follows:

  • Data is from an Excel file and stored on SharePoint Site.
  • The Excel file has many columns but  the main part that I need to use for that is a business requirement
    • Column: End Date (Date data type)
    • Column: Progress status (Text data type: from the different status that users can choose such as  Completed, Planning, In Progress  )
  • Its to check if the project has overshot by timeline or not.

  • Sample Excel file is attached

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 

1 ACCEPTED SOLUTION
VahidDM
Super User
Super User

HI @aaroh_bits791 

 

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:

VahidDM_0-1646716611794.png

 

 

 

 

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/

 

 

View solution in original post

2 REPLIES 2
VahidDM
Super User
Super User

HI @aaroh_bits791 

 

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:

VahidDM_0-1646716611794.png

 

 

 

 

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/

 

 

Thank you so much @VahidDM ...

😀

 

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors