A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Fair enough and thank you! I will do my best here:
Sheet 3 = "Old" and has data as below. This list can be up to about 5,000 rows of data
| A | B | C | D | E | F | G | H |
|---|---|---|---|---|---|---|---|
| Variance | Header | Header | Header | Header | Header | Header | Batch |
| Variance | Other data | Other data | Other data | Other data | Other data | Other data | ABC5226 |
| Variance | Other data | Other data | Other data | Other data | Other data | Other data | ABC5227 |
| Variance | Other data | Other data | Other data | Other data | Other data | Other data | ABC5228 |
| Variance | Other data | Other data | Other data | Other data | Other data | Other data | ABCM216 |
| #N/A | Other data | Other data | Other data | Other data | Other data | Other data | ABCA212 |
| #N/A | Other data | Other data | Other data | Other data | Other data | Other data | ABCA213 |
| #N/A | Other data | Other data | Other data | Other data | Other data | Other data | ABCA214 |
Sheet 2 = "Current" and has data as below
| A | B | C | D | E | F | G | H |
|---|---|---|---|---|---|---|---|
| Variance | Header | Header | Header | Header | Header | Header | Batch |
| #N/A | Other data | Other data | Other data | Other data | Other data | Other data | ABC5226 |
| Variance | Other data | Other data | Other data | Other data | Other data | Other data | ABC5227 |
| Variance | Other data | Other data | Other data | Other data | Other data | Other data | ABC5228 |
| Variance | Other data | Other data | Other data | Other data | Other data | Other data | ABCM216 |
| #N/A | Other data | Other data | Other data | Other data | Other data | Other data | ABCA212 |
| #N/A | Other data | Other data | Other data | Other data | Other data | Other data | ABCA213 |
| #N/A | Other data | Other data | Other data | Other data | Other data | Other data | ABCA214 |
| Variance | Other data | Other data | Other data | Other data | Other data | Other data | ABCA215 |
Sheet 1 = "Dashboard" and has data below with columns A-D hidden
| A | B | C | D | E | F |
|---|---|---|---|---|---|
| Current | Old | Completed | =COUNTIF(D:D,"1") | ||
| Variance | Variance | New | =COUNTIF(B:B,"1") | ||
| =FILTER(Current!H:H,Current!A:A=A2,"") | =IF(A4<>"",XLOOKUP(A4,C:C,C:C,"1"),"") | =FILTER(Old!H:H,Old!A:A=C2,"") | =IF(C4<>"",XLOOKUP(C4,A:A,A:A,"1"),"") | Total Outstanding | =COUNTA(A4:A2000) |
So in this example data set:
Completed would be a count of any batches which had Variance in the Old tab and #N/A in the Current Tab. It counts ABC5226 and returns a result of 1
New would be a count of any batches which have Variance in the Current Tab and either did not exist, or had #N/A in the Old Tab. It counts ABCA215 and returns a result of 1
Total Outstanding is just a count of Variance in the Current Tab and returns a result of 4
What I have in "Dashboard" is getting me the result I need, but I'm trying to work it into a single formula.
Hope this helps clarify!