Hello,
I'm currently using an array, but the time it takes is much longer than I would like.
Cells G2:G964 I have
Cells H2:H964 I have
Cells I2:I964 I have
Cells J2:J964 I have
Cells K2:K964 I have
Cells L2:L964 I have
Cells M2:M964 I have
Cells N2:N964 I have
Cells O2:O964 I have
Cells P2:P964 I have
Cells Q2:Q964 I have
Cells R2:R964 I have
Cells S2:S964 I have
Cells T2:T964 I have
Cells U2:U964 I have
Cells V2:V964 I have
In a nut shell, copying G2 to G2:V964, but the Array formula doesn't allow for that
The above Arrays are returning a date (MM/DD/YYYY). There are blank cells in the referenced (Sheet0!$E:$E) and the result returned is 1/0/1900. I would prefer blank results to return "N".
Any pointers would be very much appreciated.
BTW Sheet0 has 15,456 rows.
Thank you
I'm currently using an array, but the time it takes is much longer than I would like.
Cells G2:G964 I have
Excel Formula:
=INDEX(Sheet0!$E:$E,MATCH(1,(Sheet0!$H:$H=$F2)*(Sheet0!$B:$B=G$1),0))
Excel Formula:
=INDEX(Sheet0!$E:$E,MATCH(1,(Sheet0!$H:$H=$F2)*(Sheet0!$B:$B=H$1),0))
Excel Formula:
=INDEX(Sheet0!$E:$E,MATCH(1,(Sheet0!$H:$H=$F2)*(Sheet0!$B:$B=I$1),0))
Excel Formula:
=INDEX(Sheet0!$E:$E,MATCH(1,(Sheet0!$H:$H=$F2)*(Sheet0!$B:$B=J$1),0))
Excel Formula:
=INDEX(Sheet0!$E:$E,MATCH(1,(Sheet0!$H:$H=$F2)*(Sheet0!$B:$B=K$1),0))
Excel Formula:
=INDEX(Sheet0!$E:$E,MATCH(1,(Sheet0!$H:$H=$F2)*(Sheet0!$B:$B=L$1),0))
Excel Formula:
=INDEX(Sheet0!$E:$E,MATCH(1,(Sheet0!$H:$H=$F2)*(Sheet0!$B:$B=M$1),0))
Excel Formula:
=INDEX(Sheet0!$E:$E,MATCH(1,(Sheet0!$H:$H=$F2)*(Sheet0!$B:$B=N$1),0))
Excel Formula:
=INDEX(Sheet0!$E:$E,MATCH(1,(Sheet0!$H:$H=$F2)*(Sheet0!$B:$B=O$1),0))
Excel Formula:
=INDEX(Sheet0!$E:$E,MATCH(1,(Sheet0!$H:$H=$F2)*(Sheet0!$B:$B=P$1),0))
Excel Formula:
=INDEX(Sheet0!$E:$E,MATCH(1,(Sheet0!$H:$H=$F2)*(Sheet0!$B:$B=Q$1),0))
Excel Formula:
=INDEX(Sheet0!$E:$E,MATCH(1,(Sheet0!$H:$H=$F2)*(Sheet0!$B:$B=R$1),0))
Excel Formula:
=INDEX(Sheet0!$E:$E,MATCH(1,(Sheet0!$H:$H=$F2)*(Sheet0!$B:$B=S$1),0))
Excel Formula:
=INDEX(Sheet0!$E:$E,MATCH(1,(Sheet0!$H:$H=$F2)*(Sheet0!$B:$B=T$1),0))
Excel Formula:
=INDEX(Sheet0!$E:$E,MATCH(1,(Sheet0!$H:$H=$F2)*(Sheet0!$B:$B=U$1),0))
Excel Formula:
=INDEX(Sheet0!$E:$E,MATCH(1,(Sheet0!$H:$H=$F2)*(Sheet0!$B:$B=V$1),0))
In a nut shell, copying G2 to G2:V964, but the Array formula doesn't allow for that
The above Arrays are returning a date (MM/DD/YYYY). There are blank cells in the referenced (Sheet0!$E:$E) and the result returned is 1/0/1900. I would prefer blank results to return "N".
Any pointers would be very much appreciated.
BTW Sheet0 has 15,456 rows.
Thank you