Forum Discussion
Mtumushi
Mar 11, 2021Copper Contributor
Transferring specific numbers from a column to a column
How do I move the specific numbers to a column that correspond to the numbers.. Kindly assist For example 1,2,3,5,9 and they are about 500 and I want to copy for example 9 to column 9..
- Mar 11, 2021
Hi Mtumushi
If I understand the requirement correctly, you need below formula:
=IFERROR(INDEX($A:$A,MATCH(COLUMN(),$A:$A,0),1),"")
Please let me know if it works for you. A sample file is also attached for your reference.
Thanks
Tauqeer
tauqeeracma
Mar 11, 2021Iron Contributor
Hi Mtumushi
If I understand the requirement correctly, you need below formula:
=IFERROR(INDEX($A:$A,MATCH(COLUMN(),$A:$A,0),1),"")
Please let me know if it works for you. A sample file is also attached for your reference.
Thanks
Tauqeer
Mtumushi
Mar 11, 2021Copper Contributor
Thanks but this may only work if each cell has a single number... What is it has multiple numbers?
- tauqeeracmaMar 11, 2021Iron Contributor
Can you confirm what is the range of multple numbers, I mean the range is 1 to 9 (single digit) or it can be any number for example 312, 7123 etc.
Thanks
- MtumushiMar 11, 2021Copper ContributorThe numbers are 3,4,7,9, in a single cell and basically what I need is to transfer as they are to column 3,4,7 and 9
- HansVogelaarMar 11, 2021MVP