Forum Discussion
Auto populate a table using two filtered ranges from another table
- Nov 03, 2020
How about
=COUNTIFS('Table A'!D$12:D$22,"<>",'Table A'!$A$12:$A$22,OFFSET($A3,-MOD(ROW()+1,4),0),'Table A'!$C$12:$C$22,$B3)
See the attached version.
I don't really understand your question, so this may be off. In the attached version, I entered a formula in C3, then used Paste Formulas to paste it to the other cells.
- HansVogelaarNov 03, 2020MVP
How about
=COUNTIFS('Table A'!D$12:D$22,"<>",'Table A'!$A$12:$A$22,OFFSET($A3,-MOD(ROW()+1,4),0),'Table A'!$C$12:$C$22,$B3)
See the attached version.
- CrimzoNov 03, 2020Copper Contributor
HansVogelaar Hi Hans Vogelaar, the formula you gave above rightly calculates the Countif per cell, is there a way to link that to the grey box and use the value in there? I ask this, as I would like to do the same for the Lower and Upper Bounds rather than total of the data. Would I replicate your formula and add the calculation steps at the start?
- HansVogelaarNov 03, 2020MVP
In D8: =COUNT(D$16:D$26)
In D9: =AVERAGE(D$16:D$26)
In D10: =STDEV(D$16:D$26)
Fill right to column F
- CrimzoNov 03, 2020Copper ContributorHi Hans Vogelaar, that works great, thank you so much!