So I have my formulas set up. I would like to include multiple months of data in multiple tables in different sheets (1 month of tables per sheet) and have the information counted on an Audit Total sheet
Sheet1 = Jan, Sheet2 = Feb, Sheet3 = March.
So I want to reference sheet 1 in January and Sheet 2 in February in Audit Sheet in the same workbook
Sheet1 = Jan
MedsNotCharted
<tbody>
</tbody>
MedsChartedgreaterthan60
<tbody>
</tbody>
Sheet2 = Feb
MedsNotCharted
<tbody>
</tbody>
MedsChartedgreaterthan60
<tbody>
</tbody>
Audit Sheet will have Multiple tables of the same information broken up into different sheets
Audit Total
<tbody>
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]2/5/19
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]0
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]1
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
</tbody>Formulas
Jan
=COUNTIFS(MedsNotCharted[Date],">="&Sheet2!C$2, MedsNotCharted[Date],"<"&(Sheet2!C$2+1))
=COUNTIFS(Medsgreaterthan60[Date],">="&Sheet2!C$2,Medsgreaterthan60[Date],"<"&(Sheet2!C$2+1))
Feb
=COUNTIFS(MedsNotCharted[Date],">="&Sheet2!C$6, MedsNotCharted[Date],"<"&(Sheet2!C$6+1))
=COUNTIFS(Medsgreaterthan60[Date],">="&Sheet2!C$6,Medsgreaterthan60[Date],"<"&(Sheet2!C$6+1))
Sheet1 = Jan, Sheet2 = Feb, Sheet3 = March.
So I want to reference sheet 1 in January and Sheet 2 in February in Audit Sheet in the same workbook
Sheet1 = Jan
MedsNotCharted
Nurse Name | Med Name | Date | |
| | 1/1/19 | |
| | 1/1/19 | |
<tbody>
</tbody>
MedsChartedgreaterthan60
Nurse Name | Med Name | Date | |
| | 1/2/19 | |
| | 1/2/19 | |
<tbody>
</tbody>
Sheet2 = Feb
MedsNotCharted
Nurse Name | Med Name | Date | |
| | 2/3/19 | |
| | 2/3/19 | |
<tbody>
</tbody>
MedsChartedgreaterthan60
Nurse Name | Med Name | Date | |
| | 2/4/19 | |
| | 2/5/19 | |
<tbody>
</tbody>
Audit Sheet will have Multiple tables of the same information broken up into different sheets
Audit Total
A | B | C | D | E | | | ||||
Jan | Date | 1/1/19 | 1/2/19 | 1/3/19 | | | ||||
| MedsNotCharted | 1 | 0 | 0 | | | ||||
| MedsCharted>60 | 0 | 2 | 0 | | | ||||
| | | | | | | ||||
Feb | Date | 2/1/19 | 2/2/19 | 2/3/19 | 2/4/19 | | ||||
| MedsNotCharted | 0 | 0 | 2 | 0 | | ||||
| MedsCharted>60 | 0 | 0 | 0 | 1 | | ||||
| | | | | | | ||||
<tbody>
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]2/5/19
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]0
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]1
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
[TD="colspan: 2"]
[/TD]
</tbody>
Jan
=COUNTIFS(MedsNotCharted[Date],">="&Sheet2!C$2, MedsNotCharted[Date],"<"&(Sheet2!C$2+1))
=COUNTIFS(Medsgreaterthan60[Date],">="&Sheet2!C$2,Medsgreaterthan60[Date],"<"&(Sheet2!C$2+1))
Feb
=COUNTIFS(MedsNotCharted[Date],">="&Sheet2!C$6, MedsNotCharted[Date],"<"&(Sheet2!C$6+1))
=COUNTIFS(Medsgreaterthan60[Date],">="&Sheet2!C$6,Medsgreaterthan60[Date],"<"&(Sheet2!C$6+1))