gino59
Active Member
- Joined
- Jul 26, 2010
- Messages
- 496
Hi all,
I have two columns as follows:
VCA4-DT[STATUS] and VCA4-DT[START DATE]
The Status column in the table can be COMPLETED, IN PROGRESS, or STOPPED.
What I'm trying to figure out is how to get the MIN date from the START DATE column only for those values in the STATUS column that are IN PROGRESS.
Any ideas?
Many thanks!
Gino
I have two columns as follows:
VCA4-DT[STATUS] and VCA4-DT[START DATE]
The Status column in the table can be COMPLETED, IN PROGRESS, or STOPPED.
What I'm trying to figure out is how to get the MIN date from the START DATE column only for those values in the STATUS column that are IN PROGRESS.
Code:
=IF(ISNUMBER(OR(OFFSET(VCA4DT_tbl[[#Headers],[STATUS]],1,0),OFFSET(VCA5DT_tbl[[#Headers],[STATUS]],1,0)))="IN PROGRESS",MIN(VCA4DT_tbl[START DATE],VCA5DT_tbl[START DATE]),"No Items")
Any ideas?
Many thanks!
Gino