Forum Discussion
tylernol
Mar 13, 2023Copper Contributor
Help! Need help finding a way to combine these two formulas.
Hi, Basically, I am trying to combine both of these formulas. The first counts every row that contains these 3 words. The second provides a count of every date that fits within the past 14 days. ...
Patrick2788
Mar 13, 2023Silver Contributor
Perhaps this:
=SUMPRODUCT((Combined!B8:B106="EVS")*(Combined!D8:D106="External")*(Combined!K8:K106="Pending")*(Combined!I8:I106<=TODAY())*(Combined!I8:I106>=TODAY()-14))- tylernolMar 13, 2023Copper ContributorI don't why it wasn't working for me originally, but you did it! Thanks!!!
- Patrick2788Mar 13, 2023Silver ContributorYou're welcome! Glad it worked.