excel - Copying specific condition meeting data from one worksheet to another -


i have 3 worksheets, 1 list of cheques write, 1 list of cheques personal account , 1 list of cheques business account.

i dont know how make cheques name "business" go worksheet 3 , ones name "personal" go worksheet 2.

example :

worksheet 1

name      cheque no. date     amount currency personal  1234567    10/8/13  10000  hkd business  1234567    9/8/13   10000  usd 

worksheet 2

name      cheque no. date     amount currency personal  1234567    10/8/13  10000  hkd 

worksheet 3

name      cheque no. date     amount currency business  1234567    9/8/13   10000  usd 

step 1: in 'worksheet 1' include 1 more column 'count' , following; enter image description here

drag formula down

step 2:

in 'worksheet 2' this; enter image description here

ie each column;

'name' ="personal"&row(p1)

'cheque no' =iferror(vlookup(a2,sheet1!$b$2:$f$9,2,false),"")

'date' =iferror(vlookup(a2,sheet1!$b$2:$f$9,3,false),"")

'amount' =iferror(vlookup(a2,sheet1!$b$2:$f$9,4,false),"")

'currency' =iferror(vlookup(a2,sheet1!$b$2:$f$9,5,false),"")

drag formulae down.

step 3:

in 'worksheet 3' this;

enter image description here

under 'name' column replace 'personal' in formula 'business'. rest same.

make sure drag formulae down results

this how 'personal' (worksheet 2) , 'business' (worksheet 3) worksheets like;

enter image description here

enter image description here

sorry quality of images.


Comments

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -