excel - Inserting Contents of Range of Cells Into Another Range -


i working on setting column of cells in excel , each cell in column pull data multiple columns of cells sheet, each cell having one-on-one relationship each other. instance, have column on sheet 1 , automatically populated data in column , column b on sheet 2 (once column runs out of data). if of data changed on sheet 2, changes updated on sheet 1. if item added, automatically inserted on sheet 1. possible using standard formulas or array formulas, or need use macros or vba? suggestions appreciated. thank in advance.

either

  1. copy formula such if(isblank(sheet2!a2),"",sheet2!a2+sheet2!b2 down greater number of rows you're need.

or

  1. write macro run each copy formula you.

    lr = sheets("sheet2").usedrange.specialcells(xlcelltypelastcell).row sheets("sheet1").select range("a2").select selection.copy range("a3:a" & lr).select activesheet.paste


Comments

Popular posts from this blog

PySide and Qt Properties: Connecting signals from Python to QML -

c# - DevExpress.Wpf.Grid.InfiniteGridSizeException was unhandled -

scala - 'wrong top statement declaration' when using slick in IntelliJ -