Excel - Call a function within a function -
scenerio - have excel formula counts number of "yes" entries in column divides count count of "yes" entries in different column
=countif('all project tasks'!ac203:ac236,"yes")/countif('all project tasks'!ab203:ab236,"yes")
this works.
however, need add criteria checks see if date in date column <= today , if so, should result "not started" instead of division result.
so far have this:
=if(d12<=today(),countif('all project tasks'!ac2:ac18,"yes")/countif('all project tasks'!ab2:ab18,"yes"),"not started")
the "not started" part works in formula division part failing. receive 0 instead of decimal number using first formula above.
i'm thinking i'm missing 1 piece cannot find is.
you try storing results formulas in different cells, diving cells eachother
Comments
Post a Comment