In attempt to reduce the number of references to another sheet, I am looking to combine the cell values across 4 columns into a combined string:
Sheet 2
COURSE | STATUS | TERM DEV | ENROLLMENT | COMBINED
ABC 123 | Master | 202110 | 24 | ABC123#Master&20110?24*
In Sheet 1, I'd like to collect all of the combined strings, if the TERMDEV is above a certain number. In other words, I'd like to FIND the TERMDEV in the combined string (number between the & and ?), and only collect those if that number is greater than a number in Sheet 1
Sheet 1
TERM | NUMBER OF INSTANCES | ENROLLMENT TOTAL
202060 | 3 | 132
If I enter 202060, in Sheet 1m it would (1) count the number of instances in Sheet 2 of the TERMDEV being equal to or greater than the 202060, and (2) SUM the enrollment across those instances. In this example, there would be three instances in Sheet 2 when TERMDEV is equal to or greater than 202060 (the number between the & and ? symbols), and the total enrollment of students across those three instances is 132 (the number between the ? and * symbols).
Any thoughts on how to work with numeric data within a combined string by referencing another sheet?