Excel - Copy Hundreds of Cells based on Row Above -


in excel, want copy

    ---------------------------------------------     | column | column b | column c | column d |     ---------------------------------------------     | 1      | 2      | 3    | 4     |     --------------------------------------------- 

to here

    -------------------------------------------------------------------     | column | column f | column c | column e | column d | column b |      -------------------------------------------------------------------     |          |          |          |          |          |          |     ------------------------------------------------------------------- 

like this

     -------------------------------------------------------------------      | column | column f | column c | column e | column d | column b |       -------------------------------------------------------------------      | 1      |          | 3    |          | 4     | 2      |      ------------------------------------------------------------------- 

how may this? have hundreds of cells. in advance

assuming headers , information layed out below, use following formula:

=ifna(index($b$2:$e$4,row($a2),match(f$9,$b$2:$e$2,0)),"") 

i placed in f10 , copied right , down far needed. used ifna produce empty cells when header did not match on in a2 e2. still show errors if copy formula down more rows have source data. if want rid of error messages change ifna iferror.

row($a2) acting simple row counter move copy down. depend on number of header rows , how define range whether or not want use a2, a1 or other starting number/

enter image description here


Comments

Popular posts from this blog

python Tkinter Capturing keyboard events save as one single string -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

javascript - Z-index in d3.js -