formula or macro

Miller83

New Member
Joined
Jan 18, 2022
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hello,
I have a training record sheet which I am pulling data from to a matrix table I am currently using the below formula but it continually calculates threads. some assistance to speed this up please.
There are about 12000 cells that run this same formula which looks for the competency (Column C) and name (Column A) from one sheet and matches them on a second sheet returning an overdue or current status from column "G"
=IFNA(INDEX('Training Records'!$G:$G,MATCH($A$4&D2, 'Training Records'!$A:$A&'Training Records'!$C:$C,0))," ")
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Rich (BB code):
data range is constantly changing
Thats okay but you don't need to search over a million cells do you......try setting the ranges to an arbitary amount, say 50000

Excel Formula:
=IFNA(INDEX('Training Records'!$G2:$G50000,MATCH($A$4&D2, 'Training Records'!$A2:$A50000&'Training Records'!$C2:$C50000,0)),"")
 
Upvote 0
Solution
Thanks the problem with that is data range is constantly changing as more people are hired
You can convert the information into a table as well. Tables automatically expand when you add rows of data. So will named ranges, so long as you use insert row within the range itself.
 
Upvote 0

Forum statistics

Threads
1,214,978
Messages
6,122,549
Members
449,089
Latest member
davidcom

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