Forum Discussion
Transferring specific numbers from a column to a column
- 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
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
- MtumushiMar 12, 2021Copper Contributor
Thank you very much tauqeeracma. It has perfectly work
- HansVogelaarMar 12, 2021MVP
I'm surprised - tauqeeracma's formula, however nice, does something completely different from what you asked...
- tauqeeracmaMar 12, 2021Iron Contributor
Hi HansVogelaar
Your VBA code was excellent and exactly producing the desired result but @Mtumushi was interested in non-VBA solution and he wanted the solution directly in his file through email.
Thanks
Tauqeer
- MtumushiMar 11, 2021Copper ContributorThanks 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
- MtumushiMar 11, 2021Copper ContributorLet me try it out.. I will inform you if it works