Created
April 12, 2018 03:26
-
-
Save rdapaz/9df7b8a78ad1469f4dfe85b42f87c924 to your computer and use it in GitHub Desktop.
MSProject Use Relative Dates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In a Custom Text Field, create a formula such as: | |
Start: | |
"T" & IIf(ProjDateDiff(#16/04/2018#,[Start])>=0,"+","") & ProjDateDiff(#16/04/2018#,[Start])/480 & "d" | |
Finish: | |
"T" & IIf(ProjDateDiff(#16/04/2018#,[Finish])>=0,"+","") & ProjDateDiff(#16/04/2018#,[Finish])/480 & "d" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment