Forum Discussion
Master_of_non
Nov 26, 2019Copper Contributor
NETWORKDAYS only for rows with a specifik name in field
Hi all,
Im a newbee and need help with a formula.
Im trying to count the networkdays in a list but I only want it to work on the rows with the status bug in column A. Ive tryed some SUMIFS with the networkdays in it but im lost.
I alredy have =IF(OR(P794="";AE794="");"";NETWORKDAYS(P794;AE794))
Is it possible to add a SUMIF or similar to select Bug in column A?
Br
Mon
4 Replies
- SergeiBaklanDiamond Contributor
- Master_of_nonCopper Contributor
SergeiBaklan Thank you sergei it worked perfectly! 🙂
- SergeiBaklanDiamond Contributor
Master_of_non , you are welcome
- mathetesGold Contributor
Try this, the changes highlighted in underlined bold (and if it doesn't work, could you upload a sample file rather than just an image). I'm just assuming your "NETWORKDAYS" function works already; didn't test it.
=IF(OR(P794="";AE794="");"";IF(A769="bug",NETWORKDAYS(P794;AE794),""))