Hello,
I am trying to create a custom field that will track when a project moves to one of two statuses, Current (CUR) and Production (PRD). I was using a combo of ISBLANK and IFIN and below is what I have, but it not giving me any results:
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
@KristinaWa1 Are you wanting the track the date in which a project moved to Current AND the date in which a project moved to Production? Or do you want this set up as an OR statement where the custom field will track the first of the two? This blog offers an example to show how to track status change dates in a calculated custom field - it uses the expression ISBLANK vs IFIN.
IF(ISBLANK({DE:Production Date Went Current}),IF({status}="CUR"||{status}="PRD",$$TODAY,{DE:Production Date Went Current}),{DE:Production Date Went Current})
Views
Replies
Total Likes
@KristinaWa1 Are you wanting the track the date in which a project moved to Current AND the date in which a project moved to Production? Or do you want this set up as an OR statement where the custom field will track the first of the two? This blog offers an example to show how to track status change dates in a calculated custom field - it uses the expression ISBLANK vs IFIN.
IF(ISBLANK({DE:Production Date Went Current}),IF({status}="CUR"||{status}="PRD",$$TODAY,{DE:Production Date Went Current}),{DE:Production Date Went Current})
Views
Replies
Total Likes
Thank you Nichole, yes I wanted the date when the project changed into either one of those statuses, you calculation worked.
Views
Replies
Total Likes