Excel: Consider only cells with given value - Recursive formula -


i'm trying make formula lets me extrapolate quality within subser let's have following set of data:

week    name    accepted?   accept week? 1     true     1   b   true     1   c   true     2   d   false    2   e   true     2   f   true     3   g   false    3   h   false    3     false    

three weeks, 3 entries each i'm trying make formula fills column 4: week 1 true because 3 entries (b2:b4) accepted week true week 2 has non accepted entry, therefore 3 entries (b5:b7) false week 3 false in accept week (b8:b10)

i appreciate tip can give me.

use formula:

=countifs(a:a,a2,c:c,true) = countif(a:a,a2) 

enter image description here


Comments

Popular posts from this blog

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -