Good morn’n,
Working on a spreadsheet that will summarize repeating items within a list of items on a separate tab which has been accomplished with:
=IF(K2=0,0,IFERROR(INDEX($‘Widgets’.$AL$3:$‘Widgets’.$AL$4000, MATCH(0, COUNTIF($K$1:K2,$‘Widgets’.$AL$3:$‘Widgets’.$AL$4000) + (COUNTIF($‘Widgets’.$AL$3:$‘Widgets’.$AL$4000, $‘Widgets’.$AL$3:$‘Widgets’.$AL$4000)<1), 0)), 0)).
Looking at 4000 rows of data bogs the computer down with each entry. The objective is to utilize INDIRECT and make reference to $AL$4000 as a variable that is adjusted by a cell that is keeping track of the number of rows being used on the Widgets tab.
Thanks in advance for your time.