Reference specific tables in specific sheets on a different sheet in the same workbook

Status
Not open for further replies.

Sircotton

New Member
Joined
Mar 26, 2019
Messages
10
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
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
2/5/19



MedsNotCharted
0
0
2
0
0



MedsCharted>60
0
0
0
1
1












<tbody>
</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))
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Duplicate https://www.mrexcel.com/forum/excel...fic-sheets-different-sheet-same-workbook.html

Please do not post the same question multiple times. All clarifications, follow-ups, and bumps should be posted back to the original thread.
Per forum rules, posts of a duplicate nature will be locked or deleted (rule 12 here: Forum Rules).

Note that sometimes posts from new users require Moderator approval before you can see them on the public forums. When this happens, you should see a message to that effect when you try to post it.
Please be patient and do not attempt to post the question again.
 
Upvote 0
Status
Not open for further replies.

Forum statistics

Threads
1,223,903
Messages
6,175,284
Members
452,630
Latest member
OdubiYouth

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top