Forum Discussion
Add cell from other column into a column by cell
irfan1495 yes the file would help. also there are a few more questions like:
is this a 1 time thing or something you need to do often? (may affect strategy)
what version of excel do you have? (i.e. can we use the new excel functions)
will this be using online excel or shared with others or others need to do this? (i.e. avoid macros)
if you just need a list of column 6 with column 11 interwoven and you have the new excel then
=TOCOL(CHOOSECOLS( [table], 6, 11 ))
but if you need to have all rest of the table around it then it gets more tricky.
First off, in-cell formula can NOT insert rows and manipulate other cells so using in-cell functions would be creating a new table (similar to the new column using the formula above). You could then copy and special paste-values over the original data. Another option includes macros (VBA) but those don't work in the online Excel and not good if you are sharing the workbook and need others to do it also. Power Query is another strong option but again will output to a new table.
You should also mention where the data is coming from with respect to is it from another sheet, manually entered, downloaded and what is next (I'm guessing you want to be able to manually fill is those new rows?)