How to replace row content in Excel in specific way? -


good morning everyone. have got question openoffice excel 4.1.3. have got xls file. there 4 columns.

symbol1 | content1 | symbol2 | content2 --------------------------------------- client  | empty    | seria   | aaa code    | empty    | type    | ccc seria   | empty    | code    | ddd type    | empty    | client  | bbb 

i need insert appreciate data column content2 in relation symbol2 column content1 in relation column symbol1. e.g.

client empty 

should be

client bbb 

because client in symbol2 has got content2 bbb that's why content1 in client should bbb. get:

symbol1 | content1 | symbol2 | content2 --------------------------------------- client  | bbb      | seria   | aaa code    | ddd      | type    | ccc seria   | aaa      | code    | ddd type    | ccc      | client  | bbb 

i don't know if possible in openoffice excel in microsoft excel. tried use functions "replace", etc. don't know how consider relation other column. thank much, have nice day.

assuming data in range a1:d5, in cell b2 enter following formula

=vlookup(a2,$c$2:$d$5,2,0) 

drag/copy down formula required.


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -