I have recently been looking into using spill functions more as I can have them veiw an array on another sheet and does not need to be updated if someone inserts a row in the middle of the data. Currently all my formulas will update to make room for the new row but not adjust to include the row.
For example if i have formulas in rows 1,2 and 3 then decide to add a new row between 2 and 3, the formulas will now adjust to cover rows 1,2 and 4, and row 3 will not have a formula.
Below is a table of what i current have, but looking to use a spill function such as SORT or Filter but i am having difficulties getting it to work as intended.
I will be aiming to apply this method to multiple other formulas i have.
For a bit of information i have an error check which searches for several potential errors such as duplicates, numerical values, if one cell is populated then another will need to be populated too, if one cell is populated then other cells shouldn't be, etc
So any explanation on any solutions provided would be appreciated.
I am open to other options providing they are formula based and not VBA.
For example if i have formulas in rows 1,2 and 3 then decide to add a new row between 2 and 3, the formulas will now adjust to cover rows 1,2 and 4, and row 3 will not have a formula.
Below is a table of what i current have, but looking to use a spill function such as SORT or Filter but i am having difficulties getting it to work as intended.
I will be aiming to apply this method to multiple other formulas i have.
For a bit of information i have an error check which searches for several potential errors such as duplicates, numerical values, if one cell is populated then another will need to be populated too, if one cell is populated then other cells shouldn't be, etc
So any explanation on any solutions provided would be appreciated.
Information | Spill function to show duplicate | Formula | ||
1A | =IF(COUNTIF($A$2:$A$10,$A2)>1,"Cust Ref "&$A2&" is Duplicated","") | |||
2A | =IF(COUNTIF($A$2:$A$10,$A3)>1,"Cust Ref "&$A3&" is Duplicated","") | |||
1B | =IF(COUNTIF($A$2:$A$10,$A4)>1,"Cust Ref "&$A4&" is Duplicated","") | |||
2B | =IF(COUNTIF($A$2:$A$10,$A5)>1,"Cust Ref "&$A5&" is Duplicated","") | |||
3A | =IF(COUNTIF($A$2:$A$10,$A6)>1,"Cust Ref "&$A6&" is Duplicated","") | |||
3B | Cust Ref 3B is Duplicated | =IF(COUNTIF($A$2:$A$10,$A7)>1,"Cust Ref "&$A7&" is Duplicated","") | ||
3B | Cust Ref 3B is Duplicated | =IF(COUNTIF($A$2:$A$10,$A8)>1,"Cust Ref "&$A8&" is Duplicated","") | ||
4A | =IF(COUNTIF($A$2:$A$10,$A9)>1,"Cust Ref "&$A9&" is Duplicated","") | |||
4B | =IF(COUNTIF($A$2:$A$10,$A10)>1,"Cust Ref "&$A10&" is Duplicated","") | |||
I am open to other options providing they are formula based and not VBA.