Forum Discussion
MeiChan1314
Aug 10, 2021Copper Contributor
Simple formula for search the min date with criteria
Hi All, the screenshot are the sample of raw data and result. I would like to return the earliest date from the category of "pull,push,pull-M,push-M" with formula at K column.
- Aug 10, 2021
Use
=IF(MINIFS($G$111:$G$500, $F$111:$F$500, J111, $H$111:$H500, "pu*")=0,"",MINIFS($G$111:$G$500, $F$111:$F$500, J111, $H$111:$H500, "pu*"))
MeiChan1314
Aug 10, 2021Copper Contributor
Thanks for the help on it. My excel is newer version, with Minifs will return 0-Jan-00 if not found or match, I would like to have show blank or empty if not found.
HansVogelaar
Aug 10, 2021MVP
Use
=IF(MINIFS($G$111:$G$500, $F$111:$F$500, J111, $H$111:$H500, "pu*")=0,"",MINIFS($G$111:$G$500, $F$111:$F$500, J111, $H$111:$H500, "pu*"))