Index/Match across multiple sheets and workbooks

nymets5485

New Member
Joined
Jun 22, 2023
Messages
8
Office Version
  1. 365
Platform
  1. Windows
Good Afternoon! I work at a medical practice that is made up of 4 sites. Each site has an excel workbook that they enter daily statistics into. I am trying to create another workbook to act as a "dashboard" to display the critical data from each sites workbook. I am trying to use an index and match formula so when the dates match it will display the corresponding cell value. I think i am close but am getting a #value! error.

1687457418667.png

1687457530024.png


So when the date in J1 matches the date on the site workbook i want the corresponding number in the patient visit column to display.

This is the formula that im trying and getting the error : =INDEX('[MWR - 2023 Stats.xlsx]Jan 23:Dec 23'!$E$9:$E$31,MATCH((J1),'[MWR - 2023 Stats.xlsx]Jan 23:Dec 23'!$B$9:$B$31,0))

Happy to provide follow up info. Thanks!
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
You cannot use 3D references in index.
How about
Excel Formula:
=INDEX(VSTACK('[MWR - 2023 Stats.xlsx]Jan 23:Dec 23'!$E$9:$E$31),MATCH(J1,VSTACK('[MWR - 2023 Stats.xlsx]Jan 23:Dec 23'!$B$9:$B$31),0))
 
Upvote 0
Solution
Do you have the VSTACK function?
 
Upvote 0
It looks like I dont but i do have 365 subscription. Is it an add on that i have to do? Appreciate the help btw!
 
Upvote 0
No it's part of the last update (if your on the semi-annual channel). Is this a company computer?
 
Upvote 0
In that case IT have probably not released the latest update.
Will the other workbook always be open?
 
Upvote 0
For the most part yes. At the very least they will be opened up a few times per day when data entries are made. The "dashboard" workbook will be put in a teams group as a tab so will always be opened. I did access the excel document via the web and that formula did work! Looks like once IT releases the update i should be good to go
 
Upvote 0
Can you use it on the web in the mean time?
The other option is to use indirect which is slow, volatile & won't work if the other workbook is closed.
 
Upvote 0

Forum statistics

Threads
1,215,267
Messages
6,123,963
Members
449,137
Latest member
yeti1016

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