Hi,
I'm using version 2013 and find that the Aggregate function makes the extraction somewhat easier.
One small issue I've overcome by that I set up a separate table to reference the values from the source sheet to help my formula because I have 4 ranges to reference and they're not consecutive and there are "too many arguments". So on the reference table, I'm using an If statement.
This is referenced on the 'Data sheet do not delete' N2:N225
On my sheet where I want to extract the lines to ('TN Detail Porting') This is the formula I have for my array.
I have all of my numbers ascending from the top like I want, but the IF statement isn't having any kind of effect to remove the blanks that are below my numbers and are generating the "#NUM!" error. I can't figure out what is causing this because the logic checks out.
Any ideas?
Thank you!
~Doctor K
I'm using version 2013 and find that the Aggregate function makes the extraction somewhat easier.
One small issue I've overcome by that I set up a separate table to reference the values from the source sheet to help my formula because I have 4 ranges to reference and they're not consecutive and there are "too many arguments". So on the reference table, I'm using an If statement.
Code:
=IF('DID Ranges & Phone Numbers'!$B18="","",'DID Ranges & Phone Numbers'!$B18)
This is referenced on the 'Data sheet do not delete' N2:N225
On my sheet where I want to extract the lines to ('TN Detail Porting') This is the formula I have for my array.
Code:
=IF(ROWS(B$9:B9)>COUNTA('DATA SHEET DO NOT DELETE!'!$N$2:$N$225),"",INDEX('DATA SHEET DO NOT DELETE!'!$N$2:$N$225,AGGREGATE(15,7,(ROW('DATA SHEET DO NOT DELETE!'!$N$2:$N$225)-ROW('DATA SHEET DO NOT DELETE!'!$N$2)+1)/('DATA SHEET DO NOT DELETE!'!$N$2:$N$225<>""),ROWS(B$9:B9))))
I have all of my numbers ascending from the top like I want, but the IF statement isn't having any kind of effect to remove the blanks that are below my numbers and are generating the "#NUM!" error. I can't figure out what is causing this because the logic checks out.
Any ideas?
Thank you!
~Doctor K