Forum Discussion
Roberto_Cesar_Morini
Jan 25, 2023Copper Contributor
Insert data from an Excel column into the same column of another spreadsheet
I need to insert into an Excel spreadsheet (which I'll call "integrative") the data coming from other spreadsheets, whose data may be in different column positions. I don't want to do it manually, i....
OliverScheurich
Jan 25, 2023Gold Contributor
=INDIRECT(ADDRESS(ROW(),MATCH(C$1,'another spreadsheet'!$1:$1,0),,,"another spreadsheet"))
Maybe with this formula. In the example the formula is copied down and to the right in order to add data from the "address" column into the 'integrative' sheet.
Roberto_Cesar_Morini
Jan 25, 2023Copper Contributor
Thank you OliverScheurich. I will explore this option. Regards.