Forum Discussion
COLUMN33
Aug 30, 2023Copper Contributor
execl joining columns
how do you link the 2 columns together so that 678 is followed by 123 in a line downwards ?
mtarler
Aug 30, 2023Silver Contributor
=TOCOL(range, , 1)
- PeterBartholomew1Sep 04, 2023Silver Contributor
Maybe you do not have Excel 365? With old Excel, a starting point might be
= INDEX( array, 1+MOD({1;2;3;4;5;6}-1,3), 1+QUOTIENT({1;2;3;4;5;6}-1,3) )but either it would need to be committed with Ctrl/Shift/Enter or placed within a defined name, where array formulas have always worked correctly. I am glad to say I no longer need to use these horrible old systems!
- COLUMN33Sep 04, 2023Copper ContributorPeter
what book would you recommend to learn the excel 2121 functions?