Forum Discussion
aaroh_bits791
Helper I
4 years agoCompute 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 b...
- 4 years ago
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/
VahidDM
Super User
4 years ago
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/
aaroh_bits791
Helper I
4 years ago