Good evening.
I basically got the formula to work but in the returned results there is blank & N/A because there are nil results in 1 of my 3 tables.
So helper 1 is below
On another sheet I have below code which works fine, till find nil result in a table (ref 2)
How can remove the blank row so the result below it moves up?.
I basically got the formula to work but in the returned results there is blank & N/A because there are nil results in 1 of my 3 tables.
So helper 1 is below
Ref 1 | Code | Name | Ref 2 | Code | Name | Ref 3 | Code | Name |
asdasd | 1234 | John | asdasd | 23123 | jim | asdasd | 1234 | John |
asdasd | 2341 | as | asdasd | 12 | Jayne | asdasd | 12 | John |
asdasd | 5412 | Simon | asdasd | 23123 | Jim | asdasd | 23123 | simon |
Excel Formula:
=UNIQUE(VSTACK(FILTER('Helper Sheet 1'!A2:C5,(ISNUMBER(SEARCH("John",'Helper Sheet 1'!C2:C5)))+(ISNUMBER(SEARCH("Simon",'Helper Sheet 1'!C2:C5))),""),FILTER('Helper Sheet 1'!E2:G5,(ISNUMBER(SEARCH("John",'Helper Sheet 1'!G2:G5)))+(ISNUMBER(SEARCH("Simon",'Helper Sheet 1'!G2:G5))),""),FILTER('Helper Sheet 1'!I2:K5,(ISNUMBER(SEARCH("simon",'Helper Sheet 1'!K2:K5)))+(ISNUMBER(SEARCH("John",'Helper Sheet 1'!K2:K5))),"")))
How can remove the blank row so the result below it moves up?.
Ref | Code | Name |
asdasd | 1234 | John |
asdasd | 5412 | Simon |
#N/A | #N/A | |
asdasd | 12 | John |
asdasd | 23123 | simon |