Forum Discussion

kynaplt's avatar
kynaplt
Copper Contributor
Feb 27, 2019
Solved

Excel formula

Hi

 

I have the master record in sheet 1.

 

I want to copy certain rows from sheet 1 to sheet 2 if condition is met.

 

Sheet 1

Column B - department code

Column C - Department Description

Column D - Employee Number

Column E ..... and so on

see image

Now, in Sheet 2, I want to copy all rows if the dept code is 0000.

 

Can somebody help me? I am a newbie in excel. Thanks

  • Assuming your data in Sheet1 is from Column B:F and the layout of Sheet1 is the same as Sheet2, the formulas you need in Sheet2 are:
    D1=IFERROR(LOOKUP(PI(),2/(1/ROW(Sheet1!D:D)=MAX(INDEX(1/ROW(Sheet1!D:D)*(Sheet1!B:B="0000")*(COUNTIF(D$1:D1,Sheet1!D:D)=0),0))),Sheet1!D:D),"")
    B1=IFERROR(INDEX(Sheet1!$B:$F,MATCH($D1,Sheet1!$D:$D,,0),COLUMN()-1),"")
    After copying D1 down the rows, you then copy B1 to C1, E1:F1, and down such rows also.
  • Twifoo's avatar
    Twifoo
    Silver Contributor
    Assuming your data in Sheet1 is from Column B:F and the layout of Sheet1 is the same as Sheet2, the formulas you need in Sheet2 are:
    D1=IFERROR(LOOKUP(PI(),2/(1/ROW(Sheet1!D:D)=MAX(INDEX(1/ROW(Sheet1!D:D)*(Sheet1!B:B="0000")*(COUNTIF(D$1:D1,Sheet1!D:D)=0),0))),Sheet1!D:D),"")
    B1=IFERROR(INDEX(Sheet1!$B:$F,MATCH($D1,Sheet1!$D:$D,,0),COLUMN()-1),"")
    After copying D1 down the rows, you then copy B1 to C1, E1:F1, and down such rows also.

Resources